如何将代码示例放在.NET XML注释中?

时间:2009-08-12 21:03:10

标签: .net xml documentation comments

我可以使用哪些标签将代码示例放入.NET /// XML注释中?

2 个答案:

答案 0 :(得分:16)

尝试使用<example>标记。

/// <example>
/// <code>
/// // create the class that does translations
/// GiveHelpTransforms ght = new GiveHelpTransforms();
/// // have it load our XML into the SourceXML property
/// ght.LoadXMLFromFile(
///  "E:\\Inetpub\\wwwroot\\GiveHelp\\GiveHelpDoc.xml");
/// </code>
/// </example>

我从here得到了上面的例子。

答案 1 :(得分:6)

您可以使用<example><code>代码。

检查Recommended Tags for Documentation Comments