Difference between revisions of "Help:Contents"
Line 5: | Line 5: | ||
class HelloWorld { | class HelloWorld { | ||
− | public static int Main(String[] args) | + | public static int Main(String[] args) { |
− | + | ||
− | + | Console.WriteLine("Hello, World!"); | |
− | + | return 0; | |
+ | |||
} | } | ||
− | }</source> | + | }</source> |
<poll> | <poll> |
Revision as of 10:51, 18 December 2008
1 // Hello World in Microsoft C# ("C-Sharp").
2
3 using System;
4
5 class HelloWorld {
6
7 public static int Main(String[] args) {
8
9 Console.WriteLine("Hello, World!");
10 return 0;
11
12 }
13
14 }
<poll> Do you like this extension? Yes No I don't know yet. </poll>