VB.NET文档注释的工具名称

时间:2010-06-25 14:07:02

标签: vb.net visual-studio-2005 documentation-generation xml-documentation

允许VB.NET代码具有可由此工具提取的嵌入式文档注释(对应于C#文档注释)的工具的名称是什么?

我正在阅读一些旧代码; Visual Studio 2005时代。一个简单的例子是:

'Form overrides dispose to clean up the component list.
'''  <summary>
'''  Summary of Dispose.
'''  </summary>
'''  <param name="disposing"></param>
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
    If disposing Then                                                
        If Not (components Is Nothing) Then                          
            components.Dispose()                                     
        End If                                                       
    End If                                                           
    MyBase.Dispose(disposing)                                        
End Sub                                                              

有一个集成到Visual Studio菜单中的第三方免费(开源?)文档生成器工具。

4 个答案:

答案 0 :(得分:2)

开发人员也习惯使用nDoc。这可能是您项目中使用的内容。它是免费的,而不是微软。它不再被使用,因为它没有得到维护。而且它更倾向于C#。但至少有one VB helper tool。这些可能不是您现在想要使用的,但它们可能与您遗留代码中嵌入的注释的语法相对应。

微软的另一个开源工具名为VBCommenter

答案 1 :(得分:1)

Sandcastle - 不确定它是否包含VS插件,但是快速的Google搜索会显示一些工具,例如DocProject来集成它。

答案 2 :(得分:1)

答案 3 :(得分:1)

我找到了。它是VBXMLDoc,后来改名为VBXC。它自2006年以来一直没有更新。它是免费软件(非开源),版本1.0应该是商业(或共享软件)。但最后一个版本是beta 3,仍然是免费的。仍然可以下载beta 3. Adding XML comments to the code