我想在类级别(在这种情况下实际上是 a Module
)提供更高级别的详细信息以及代码示例等,但我无法让各种标签正常工作。
''' <summary>
''' Here's a summary of <c>SmallCodeChunk</c>
''' </summary>
''' <example>
''' Mmm, Skynet?
''' <code>
''' code.CodingItself("that's so meta!")
''' </code>
''' </example>
''' <remarks>
''' <para>Unit testable by replacing the <see cref="Implementation"/> property
''' with a mocked/stubbed <see cref="IThingy"/>.
''' </para>
''' <para>Paragraph of a bunch of stuff. <c>Y</c> is used for <c>True</c> just
''' for the sake of making the universe a (not) better place.
''' </para>
''' </remarks>
我意识到使用的一些标签(如<exception>
)可能不是真正有效的,但似乎我应该能够做类似的事情<example>
。而且我希望<c>
标签有某种格式(也许是等宽字体?)。
如果我没有做错任何事情,是否有一部分 XML 文档标签支持在对象浏览器中显示?