Difference between revisions of "Help:Contents"

From Catglobe Wiki
Jump to: navigation, search
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").
<pre>using System;
+
 
 +
using System;
  
 
class HelloWorld {
 
class HelloWorld {
  
  public static int Main(String[] args)
+
public static int Main(String[] args)
  {
+
{
      Console.WriteLine("Hello, World!");
+
    Console.WriteLine("Hello, World!");
      return 0;
+
    return 0;
  }
+
}
  
}
+
}</source>
</pre>
 
&lt;/source&gt;
 

Revision as of 10:13, 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 }