This page is located on the SimsWiki. To view it in it's original form, click here.
Icon-atom.png {{{text}}}|Note: When you edit this page, you agree to release your contribution into the public domain. If you don't want this or can't do this because of license restrictions, please don't edit. This page is one of the Template:Mediawiki, which can be freely copied into fresh wiki installations and/or distributed with MediaWiki software; see Help:Contents for an overview of all pages. See Template:Mediawiki for instructions.}} Icon-atom.png

<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>