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;
        /// 
        /// A method example
        /// 

        /// a new value to be saved
        /// the length of the string
        public int MethodExample( string val )
        {
            m_str = val;
            return val.Length;
        }
    }
}