XML Comments in VB.NET

 

For anyone who really misses XML comment support in VB.NET - check out VBXC - which adds an almost complete implementation to the VB.NET IDE. While it isn't quite stable (it tends to popup error windows now and again almost at random) it is great at what it does with lots of configuration options.  My code documentation now looks something like this:

''' <summary>
''' Renders the GDI report to screen using the GdiPrintUtility's print preview
''' </summary>
''' <param name="reportToShow">The report object to render</param>
Public Overrides Sub Show(ByVal reportToShow As Report)
gdiPrinter = New GdiPrintUtility(reportToShow)
gdiPrinter.Show()
End Sub

 Apart from the coloring (C# differentiates between the XML nodes and their InnerText) it makes me feel right at home. I have just one request though - get rid of the funky licensing disclaimers.

Check it out at https://vbxmldoc.tor-erik.net/