
Commenting methods in VB.Net
Quote:
> I would like to add comments for each of my methods in a class so that
they
> show up with the intellisense when using the method. The default methods
> have it (such as GetType). It looks like C# has something using XML does
VB
> have something like that?
Gary, if I understand you correctly, you want the following:
<Description("This is a comment for the following method.")> _
Public Sub MyMethod()
'Do something here...
End Sub
The "Description" Attribute should do the trick...
Cal