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.

Help:Contents: Difference between revisions

Help page
No edit summary
No edit summary
Line 1: Line 1:
<source lang="csharp" line="1"> // Hello World in Microsoft C# ("C-Sharp").
<source lang="csharp" line="1">
 
// Hello World in Microsoft C# ("C-Sharp").
using System;
using System;
class HelloWorld {
class HelloWorld {
public static int Main(String[] args) {
public static int Main(String[] args) {
 
Console.WriteLine("Hello, World!"); return 0;
Console.WriteLine("Hello, World!");
return 0;
 
}
}
 
}
}</source>
</source>  


<poll>
<poll>

Revision as of 10:45, 18 December 2008

// Hello World in Microsoft C# ("C-Sharp").
using System;
class HelloWorld {
public static int Main(String[] args) {
Console.WriteLine("Hello, World!"); return 0;
}
}

<poll> Do you like this extension? Yes No I don't know yet. </poll>