Language Basics C# Tutorial

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

    /// Where a longer description would go
    class ClassExample
    {
        /// 
        /// A member variable
        /// 

        private string m_str;
    }
}