What is the name of the tool that allowed VB.NET code to have embedded documentation comments (corresponding to C# documentation comments) that could be extracted by this tool?
I am going through some old code; Visual Studio 2005 era. A trivial example is:
'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
There was a 3rd party free (open source?) documentation generator tool that integrated into the Visual Studio menus.