Using intellisense with user defined class

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
 
B

Bob Powell [MVP]

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.
 
D

Dave

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top