When you create an XML comment in C# and collapse it you only see:
<Summary>...
But in VB you could potentially see
Initializes the fubble to the watzer. This is actually the second line.
Having that line over your code can introduce lots of unwanted noise when trying to debug a class. Is there any way to turn off xml comment previews for VB?
Unchecking the
Generate XML documentation fileon the Compile tab for the VB.NET project should do it.Remember to turn this back on again when you are finished if you want to have your XML comments built. However leaving this off will improve Visual Studio performance.