The Hello World! Application with XML Comments

image_pdfimage_print

   

//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!");
    }
}