vote up 3 vote down star
2

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

flag

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

2 Answers

vote up 5 vote down check

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

link|flag
vote up 2 vote down

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

link|flag
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 at 9:09

Your Answer

Get an OpenID
or

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