This topic has not yet been rated - Rate this topic

<remarks> (C# Programming Guide)

<remarks>description</remarks>
Description

A description of the member.

The <remarks> tag is used to add information about a type, supplementing the information specified with <summary>. This information is displayed in the Object Browser Window.

Compile with /doc to process documentation comments to a file.

// compile with: /doc:DocFileName.xml  

/// <summary> 
/// You may have some primary information about this class. 
/// </summary> 
/// <remarks> 
/// You may have some additional information about this class. 
/// </remarks> 
public class TestClass
{
    /// text for Main 
    static void Main()
    {
    }
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.