对象浏览器支持哪些XML注释标记

Jef*_*f B 5 .net vb.net visual-studio-2010 xml-comments objectbrowser

我想在类级别(在这种情况下实际上是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>
Run Code Online (Sandbox Code Playgroud)

我意识到使用的某些标签(例如<exception>)可能并不真正有效,但似乎我应该可以做类似的事情<example>.而且我希望<c>标签有某种格式(等宽字体可能?).

如果我没有做错任何事情,是否支持在对象浏览器中显示XML文档标记的子集?

Ric*_*ing 6

根据MSDN杂志2009年的一篇文章:

对象浏览器显示summary,param,return,remarks,typeparam,和exception当他们存在的意见.

一个2006年后在MSDN博客增加see以及seealso到该列表.