Language Basics C# Tutorial

using System;
namespace DocumentationCommentsExample
{
    /// 
    /// A documentation sample - the short description goes here
    /// 

    /// Where a longer description would go
    class ClassExample
    {
        /// 
        /// The main method for the program
        /// 

        /// command line arguments
        static void Main(string[] args)
        {
        }
    }
}