Development Class C#

// compile with: /doc:DocFileName.xml 
/// text for class TestClass
public class TestClass
{
    /// 
    /// The GetZero method.
    /// 

    ///  This sample shows how to call the  method.
    /// 
    /// class TestClass 
    /// {
    ///     static int Main() 
    ///     {
    ///         return GetZero();
    ///     }
    /// }
    /// 

    /// 

    public static int GetZero()
    {
        return 0;
    }
    /// text for Main
    static void Main()
    {
    }
}