Language Basics C#

//csc /doc:HelloWorld.xml HelloWorld.cs
/// Here is the comment for the HelloWorld class
   
class HelloWorld
{
    /// Here is the comment for the Main method
   
    static void Main()
    {
       System.Console.WriteLine("Hello World!");
    }
}