命名空间的 XML 文档
您会为命名空间编写 xml-doc 吗? 如果是,如何以及在哪里?
我想,如果可能的话,也许是一个几乎空的文件,如下所示:
/// <summary>
/// This namespace contains stuff
/// </summary>
namespace Some.Namespace
{
}
但这会起作用吗? 既然您...“声明”,或者至少在所有其他文件中也使用该名称空间...如果您在同一名称空间的其他地方编写了 xml 文档,会发生什么情况? 会有一个消失吗? 或者它们会以某种方式合并吗?
Would you write xml-doc for a namespace? And if yes, how and where?
I would think, if it is possible, maybe an almost empty file like this:
/// <summary>
/// This namespace contains stuff
/// </summary>
namespace Some.Namespace
{
}
But will that work? Since you... "declare", or at least use the namespace in all the other files as well... and what would happen if you wrote an xml-documentation thing somewhere else on the same namespace? Would one be gone? Or would they be merged somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
NDoc 通过识别位于每个命名空间中的特殊
NamespaceDoc
类并使用其中的文档来支持这一点。 我还没有尝试过,但 Sandcastle 似乎支持同样的技巧。编辑:
例如:
NDoc supports this by recognising a special
NamespaceDoc
class located in each namespace, and using the documentation from that. I haven't tried it, but Sandcastle appears to support the same trick.Edit:
For example:
Sandcastle 不直接支持 NamespaceDoc,但是如果您使用 Sandcastle 帮助文件生成器,您可以使用提到的 NamespaceDoc 类由蒂姆.
SCHB 还稍微扩展了语法,并允许直接从代码文件嵌入代码示例。 示例 _Namespace.xml:
在 XML 文件中包含文档允许您在代码中编写简短的摘要,并在帮助文件的单独 XML 文件中编写较大的描述。 这样,代码就不会因所有细节而混乱,并且仍然易于阅读。
Sandcastle does not support the NamespaceDoc directly, but if you use Sandcastle Help File Builder you can use the NamespaceDoc class mentioned by Tim.
SCHB also extends the syntax slightly and allows embedding code examples straight from code files. An example _Namespace.xml:
Including documentation in XML file allows you to write short summary in code and larger description in a separate XML file for the help file. This way the code isn't cluttered with all the details and remains easily readable.
Sandcastle 帮助文件生成器支持命名空间上的注释。 打开您的 Sandcastle 项目。 在
Project Properties
窗口中导航至Summaries
并单击Edit Namespace Summaries
按钮。Sandcastle Help File Builder supports comments on namespaces. Open your Sandcastle project. In
Project Properties
window navigate toSummaries
and click on theEdit Namespace Summaries
button.您可以在 doxygen 中使用以下方法执行此操作:
另外,在 NameSpaces.cs 文件中声明名称空间并仅在此文件中注释它们是一个很好的做法。
You can do it in doxygen using:
Also, it's a good practice to declare your namespaces in a NameSpaces.cs file, and comment them only in this file.
如果您使用 Sandcastle 及其“帮助文件生成器”,您可以在项目中使用以下代码记录命名空间和命名空间组:
如果项目启用了命名空间分组,您还可以使用类似的 NamespaceGroupDoc 类来维护命名空间组注释。时尚。 以下是一个示例:
要防止 NamespaceDoc 类出现在帮助文件中,请省略 public 关键字并用 CompilerGenerate 属性对其进行标记。
有关参考,请参阅此处: https://ewsoftware.github .io/SHFB/html/48f5a893-acde-4e50-8c17-72b83d9c3f9d.htm
If you use Sandcastle and its "Help File Builder" you can document namespaces and Namespace-Groups using the following Code in your Projects:
If the project has namespace grouping enabled, you can also maintain the namespace group comments using a NamespaceGroupDoc class in a similar fashion. The following is an example:
To keep the NamespaceDoc class from appearing in the help file, leave off the public keyword and mark it with a CompilerGenerated attribute.
For Reference see here: https://ewsoftware.github.io/SHFB/html/48f5a893-acde-4e50-8c17-72b83d9c3f9d.htm
无法对命名空间添加注释。
在 http://ndoc.sourceforge.net/content/documenters.htm 上使用NamespaceDocSummaries
It is not possible to put comments on namespaces.
UseNamespaceDocSummaries on http://ndoc.sourceforge.net/content/documenters.htm
如果使用 Mono 的 mdoc 文档系统,您可以通过编辑 ns-*.xml 文档文件来记录命名空间成员。
请参阅 mdoc 文件格式文档更多细节。
If using Mono's mdoc documentation system, you can document namespace members by editing the ns-*.xml documentation files.
See the mdoc file format documentation for more details.
在 Visual Studio 中,可以通过创建如下所示的 Namespaces.cs 文件来完成:
In Visual Studio it can be done by creating a Namespaces.cs file like the following: