I\'m writing a VB.NET function with a ton of overloads. I\'ve seen that most .NET functions have parameter descriptions in IntelliSense. For example, when typing in String
Right click a method/member name and choose 'Insert Comment' from the context menu.
The contents of the XML for the member/method will be displayed in some versions of Visual Studio, inside intellisense tip windows.
'''
''' Summary for the method goes here
'''
''' Param comments go here
'''
Private Sub SomeMethod(ByVal value As Decimal)