我想在备注部分的黄色'注意'框中实现类似的功能 这个MSDN页面 在我自己的文档中。
我正在使用sandcastle和sandcastle帮助文件构建器从文档标签生成参考网站。为了获得这样的便签盒,我需要写些什么?
我想在备注部分的黄色'注意'框中实现类似的功能 这个MSDN页面 在我自己的文档中。
我正在使用sandcastle和sandcastle帮助文件构建器从文档标签生成参考网站。为了获得这样的便签盒,我需要写些什么?
/// <summary><c>Increment</c> method increments the stored number by one.
/// <note type="caution">
/// note description here
/// </note>
/// </summary>
查看文件“C:\ Program Files \ Sandcastle \ Examples \ Sandcastle \ test.cs”
类型可以是以下之一:
/// <summary><c>Increment</c> method increments the stored number by one.
/// <note type="caution">
/// note description here
/// </note>
/// </summary>
查看文件“C:\ Program Files \ Sandcastle \ Examples \ Sandcastle \ test.cs”
类型可以是以下之一:
不是直接解决方案,而是替代方案:
NDoc的 支持一个 <note>
标签。由于NDoc已过时,您可以查看此功能 NDoc3,这绝对值得一看,因为它也能够创建简单的HTML文档,而不仅仅是假定asp.net的在线文档。