<c> (C# Programming Guide)
<c>text</c>
Parameters
- 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
// compile with: /doc:DocFileName.xml
/// text for class TestClass
public class TestClass
{
/// <summary><c>DoWork</c> is a method in the <c>TestClass</c> class.
/// </summary>
public static void DoWork(int Int1)
{
}
/// text for Main
static void Main()
{
}
}
See Also
Reference
Recommended Tags for Documentation Comments (C# Programming Guide)