The Hello World! Application with XML Comments : Comments : Language Basics C# Source Code


Custom Search

C# Source Code » Language Basics » Comments »

 

The Hello World! Application with XML Comments









    

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

           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Language Basics
» Comments