我想在代碼示例等級的課程級別(本例中實際上是Module
)提供更高級別的詳細信息,但我無法獲取各種標籤工作。對象瀏覽器支持哪些XML註釋標記
''' <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文檔標籤支持在對象瀏覽器中顯示?
這並不完全回答我在Visual Studio 2010的對象瀏覽器中哪些標籤有效和受到尊重的問題。 –