IntelliSense Code Comments?

  • Thread starter Thread starter Guest
  • Start date Start date
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,
 
If you are using vs2005 put ''' above your functions or sub and press ENTER
..
vs2003 search for addin "VBCommenter" .

[]'s
Luis Gustavo
 
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,
 
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>
 
Back
Top