Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 03:25, 18 December 2008 by Catglobe (talk | contribs) (Test Extension Hightligh)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<source lang="csharp" line="1">
// Hello World in Microsoft C# ("C-Sharp").

using System;

class HelloWorld
{
public static int Main(String[] args)
{
Console.WriteLine("Hello, World!");
return 0;
}
}
</source>