更新:2007 年 11 月
<summary>description</summary> |
参数
备注
</summary> 标记应当用于描述类型或类型成员。使用
</summary> 标记的文本是唯一有关 IntelliSense 中的类型的信息源,它也显示在
使用
示例
C# | 复制代码 |
---|---|
// compile with: /doc:DocFileName.xml /// text for class TestClass public class TestClass { /// <summary>DoWork is a method in the TestClass class. /// <para>Here's how you could make a second paragraph in a description. <see cref="System.Console.WriteLine(System.String)"/> for information about output statements.</para> /// <seealso cref="TestClass.Main"/> /// </summary> public static void DoWork(int Int1) { } /// text for Main static void Main() { } } |