In C# this is apparently called 'Document Comments' and works like this
public void blahblah()
{
/// <summary>
/// blah blah blah
/// </summary>
return void;
}


What it does is put up a tooltip when you're looking at a method or property of your class. I can't seem to find any equivalent in VB.NET. Does anyone know how to do this for a class?