IntelliSense Code Comments?

G

Guest

I am creating my own library (.DLL), I need to know the code to put a
comments or Tooltip to my library. I want a Tooltip when I choose any
function of my library when I working with, like the original library of VB
when I press Ctrl & SpaceBar and I put the mouse point over the function name
it show me a tooltip with description of this function and short explain of
this.

ThanKs,
 
L

Luis Gustavo

If you are using vs2005 put ''' above your functions or sub and press ENTER
..
vs2003 search for addin "VBCommenter" .

[]'s
Luis Gustavo
 
G

Guest

Thanks Gustavo, it work fine.

Luis Gustavo said:
If you are using vs2005 put ''' above your functions or sub and press ENTER
..
vs2003 search for addin "VBCommenter" .

[]'s
Luis Gustavo

Elioth said:
I am creating my own library (.DLL), I need to know the code to put a
comments or Tooltip to my library. I want a Tooltip when I choose any
function of my library when I working with, like the original library of
VB
when I press Ctrl & SpaceBar and I put the mouse point over the function
name
it show me a tooltip with description of this function and short explain
of
this.

ThanKs,
 
H

Herfried K. Wagner [MVP]

Elioth said:
I am creating my own library (.DLL), I need to know the code to put a
comments or Tooltip to my library. I want a Tooltip when I choose any
function of my library when I working with, like the original library of
VB
when I press Ctrl & SpaceBar and I put the mouse point over the function
name
it show me a tooltip with description of this function and short explain
of
this.

Adding IntelliSense tooltips, XML comments, and documentation
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=tooltipsxmldocumentation&lang=en>
 

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