Sub/Property/Function Description

kurt69

Well-known member
Joined
Jan 17, 2006
Messages
78
Location
Australia
Programming Experience
Beginner
Hey there, I'm making a class library (vb2005 DLL) for somebody and I would like to be able to add descriptions to the subs/properties/functions that are in it for them to read.

You know the little tool tip that pops up and explains what the method is
i.e. when you type "System.Math" it will have a tool tip that says:

Class Math
Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.

Please this is the final thing that I need to add to the DLL before I can call it complete, I have looked at attributes and assembly attributes but don't understand them properly.

Thanks.

Edit: Nevermind I found out what I needed by searching "Visual Basic XML Documentation".

For those also wandering, go into your document, above your class/function/property/sub/etc and type ''' then press enter. It will 'intellitype' the tags needed to fill in the information for creating the description of your things.

Cheers.
 
Last edited:
Back
Top