adding Discription to intelliscence

Rayeesh

New member
Joined
Dec 16, 2005
Messages
1
Programming Experience
1-3
hi all
i want to show the discription of methods,properties in tooltips of intelliscense. it is possible in c# in .net 2003 by /doc but not in vb.net .yes it has been added in .net 2005 but i want this in vb.net .Can anybody tell me .there are ample of prog in internet which creates xmlfile for documentation but none is so help ful.
Can anybody help me how i can achieve this in vb.net.
 
I may well be wrong here, but you could try this....

Import the 'System.ComponentModel' Namespace

The directly above the method or property put..

VB.NET:
<Description("MethodDescription")> _

There may also be another attribute that you haver to add in order for this to work but the code escapes me right now.
 
Back
Top