Using intellisense with user defined class

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Is there a way to put some comments in my class designs that will show up in
the IDE intellisense so I can add some information about the parameters to
be passed to member methods?

Thanks in advance for the help.

Dave
 
You need to get the VBCommenter Power Toy which enables you to use the same
inline XML comments that C# users have.

Once you have that you can use the XML comments to create summary
descriptions of methods, properties and classes which can be exported as an
XML file that you distribute with the DLL

GotDotNet has the VBCommenter.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Thank you Bob,

Dave

Bob Powell said:
You need to get the VBCommenter Power Toy which enables you to use the
same inline XML comments that C# users have.

Once you have that you can use the XML comments to create summary
descriptions of methods, properties and classes which can be exported as
an XML file that you distribute with the DLL

GotDotNet has the VBCommenter.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top