Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 08:13, 18 December 2008 by Mediawiki (talk | contribs)
 // Hello World in Microsoft C# ("C-Sharp").

using System;

class HelloWorld {

public static int Main(String[] args)
{
    Console.WriteLine("Hello, World!");
    return 0;
}

}