更新:2007 年 11 月
<example>description</example> |
参数
备注
使用 <example> 标记可以指定使用方法或其他库成员的示例。这通常涉及使用
使用
示例
C# | 复制代码 |
---|---|
// compile with: /doc:DocFileName.xml /// text for class TestClass public class TestClass { /// <summary> /// The GetZero method. /// </summary> /// <example> This sample shows how to call the GetZero method. /// <code> /// class TestClass /// { /// static int Main() /// { /// return GetZero(); /// } /// } /// </code> /// </example> public static int GetZero() { return 0; } /// text for Main static void Main() { } } |