Help:Contents: Difference between revisions
Help page
More actions
Test Extension Hightligh  |
No edit summary |
||
| Line 1: | Line 1: | ||
<source lang=" | <source lang="c#" line="1"> // Hello World in Microsoft C# ("C-Sharp"). Â | ||
using System; Â | using System; Â | ||
class HelloWorld | class HelloWorld { public static int Main(String[] args) { Console.WriteLine("Hello, World!"); return 0; } } </source> | ||
Revision as of 03:39, 18 December 2008
<source lang="c#" 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>