up vote 3 down vote favorite
2
share [g+] share [fb]

I need (preferrably the shortest) program that prints its own source code in C#. I will post it here when I finish it, but if you already have a link your help will be greatly appreciated.

I have come with a solution, but then have found it here. Cuddos to Joey Westcott

link|improve this question

Double points if you can get it to print out it's own MSIL. – Kibbee Apr 15 '09 at 20:08
Process.Start("ildasm.exe " + Assembly.GetExecutingAssembly().Location + " /out=con"); – Prankster Apr 15 '09 at 20:23
word... thanks for the cuddos! – YetAnotherDeveloper Sep 18 '09 at 2:25
feedback

2 Answers

up vote 5 down vote accepted

It's called a quine, and there are several listed on Google. For example, http://safalra.com/programming/c-sharp/quines/.

link|improve this answer
feedback

Read the program's source file into a string, then print it.

link|improve this answer
yes, but the string within the string refers to itself, hence the self reference 'escape' tricks used in quines, otherwise you end up with an infinite regress. – Darknight Aug 26 '09 at 9:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.