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

前端之家收集整理的这篇文章主要介绍了如何将代码示例放在.NET XML注释中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以使用什么标签代码示例放在.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得到了上面的例子.

原文链接:https://www.f2er.com/xml/292688.html

猜你在找的XML相关文章