A quine is a program that prints its own source code without opening itself from the filesystem.

Here is an example of such a quine in C#:

class Q{static void Main(){var s="class Q{{static void Main(){{var s={1}{0}{1};System.Console.Write(s,s,'{1}');}}}}";System.Console.Write(s,s,'"');}}

This solution seems pretty messy and inelegant to me, though. It's a terrible program to maintain because whenever you change the source, you have to do it in two places, which is a big programming no-no.

Is there a good way to write a quine in C# that doesn't violate the DRY principle?

link|improve this question

2  
Why on earth would you expect to be able to write a neat, elegant, quine in a conventional programming language? – bmargulies Dec 5 '11 at 3:19
1  
@bmargulies Because you can write neat, elegant quines in other programming languages, such as Javascript. Is there a reason I should expect C# to be incapable of elegantly handling such a simple task? – Peter Olson Dec 5 '11 at 3:46
Even if it is possible, I bet it still wouldn't be any more elegant. But that's subjective. I actually think the one you posted (which is pretty much the one everyone eventually comes up with when going for the shortest code) is pretty elegant in its way. – Igby Largeman Dec 5 '11 at 4:51
feedback

closed as not constructive by bmargulies, dtb, Phil Wright, Nix, Brock Adams Dec 5 '11 at 6:31

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.