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

最佳答案

尝试使用<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得到了上面的例子。

关于.net - 如何将代码示例放在.NET XML注释中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1268722/

10-15 00:56