#6 – An Even Smaller C# Program
June 23, 2010 6 Comments
In The Smallest Possible C# Program, I mentioned a couple things as optional. For the record, here’s the absolute smallest C#.NET program that you can write. (Assuming that you don’t need it to actually do anything).
class Program { static void Main() { } }