Shell scripts

From GeodesyLab
Revision as of 19:27, 4 February 2008 by Ronni (Talk | contribs)

Jump to: navigation, search

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

using System;

class HelloWorld {

   public static int Main(String[] args)
   {
       Console.WriteLine("Hello, World!");
       return 0;
   }

} </source>