Intellisense Descriptions

  • Thread starter Thread starter alien2_51
  • Start date Start date
A

alien2_51

I'm trying to get descriptions for my properties and methods inside my
classes to appear in Intellisense. I'm using VB.Net, does any know how to do
this...? If so an example would be very much appreciated...

Thanks,

Dan
 
alien2_51 said:
I'm trying to get descriptions for my properties and methods inside my
classes to appear in Intellisense. I'm using VB.Net, does any know how to do
this...? If so an example would be very much appreciated...

You need to use XML documentation, which isn't available in the current
version of VB.NET as it is. However, there are plug-ins you can get to
support it. See
http://vb-doc.sourceforge.net/
 
Hello,

alien2_51 said:
I'm trying to get descriptions for my properties and methods
inside my classes to appear in Intellisense. I'm using VB.Net,
does any know how to do this...?

There are some tools available which can be used to generate the XML file
required for the tooltips:

My XML Comments FAQ:

VB Commenter
http://www.gotdotnet.com/team/ide/
-> section "VB Commenter"

XML Documentation
http://www.gotdotnet.com/team/vb/
-> section "XML Documentation"

VBXC - VB.NET XML Commentor
http://vbxmldoc.tor-erik.net/index.shtml

NDOC (formerly DOC.NET)
http://ndoc.sourceforge.net/

VB.DOC
http://vb-doc.sourceforge.net/
 
Back
Top