更新:2007 年 11 月
<c>text</c> | 
参数
备注
<c> 标记为您提供了一种将说明中的文本标记为代码的方法。使用 
使用 
示例
| C# | |
|---|---|
// 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() { } }  | |