where:
- text
- The text you would like to indicate as code.
Remarks
The <c> tag gives you a way to indicate that text within a description should be marked as code. Use <code> to indicate multiple lines as code.
Compile with /doc to process documentation comments to a file.
Example
// xml_c_tag.cs
// compile with: /doc:xml_c_tag.xml
/// text for class MyClass
public class MyClass
{
/// <summary><c>MyMethod</c> is a method in the <c>MyClass</c> class.
/// </summary>
public static void MyMethod(int Int1)
{
}
/// text for Main
public static void Main ()
{
}
}
See Also
Recommended Tags for Documentation Comments