Tagged Questions

3
votes
2answers
1k views

The shortest program that prints its own source code in C#

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 ...
2
votes
0answers
72 views

How to write a quine while keeping the code DRY? [closed]

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 ...
1
vote
3answers
567 views

C# Quine Problem

I am trying to understand how this piece of self-replicating code works (found here), but the problem is I can't get it to run as-is: class c { static void Main(){ string s = "class ...
0
votes
1answer
59 views

Is the reflection namespace a building block for writing a quine in C#?

Do I need to use reflection to write a quine program for C#? I read elsewhere - quine that opening the source file from disk is "cheating" So I guess using .net reflector and/or opening the source ...