允许 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 菜单中的第 3 方免费(开源?)文档生成器工具。