In Visual Studio and C#, when using a built in function such as ToString(), IntelliSense shows a yellow box explaining what it does.

How can I have that for functions and properties I write?
|
|
In Visual Studio and C#, when using a built in function such as ToString(), IntelliSense shows a yellow box explaining what it does.
How can I have that for functions and properties I write?
|
|||
|
|
|
|
Type in /// on the line before your function and hit return It will generate the stuff required for you to fill in for that stuff to occur. In VB type ''' This will generate an area where you can specify a description for the function and each parameter for the function |
||||||||
|
|
|
Those are called XML Comments. They have been a part of Visual Studio since forever. You can make your documentation process easier by using GhostDoc, a free add-in for Visual Studio which generates XML-doc comments for you. Just place your caret on the method/property you want to document, and press Ctrl-Shift-D. Here's an example from one of my posts. Hope that helps :) |
|||
|
|
|
What you need is xml comments - basically, they follow this syntax (as vaguely described by Solmead): C#
VB
|
||||||
|
|
|
Also the visual studio add-in ghost doc will attempt to create and fill-in the header comments from your function name. |
||
|
|
|
|
use /// to begin each line of hte comment and have the comment contain the appropriate xml for the meta data reader.
Although personally, I believe that these comments are usually misguided, unless you are developing classes where the code cannot be read by its consumers. |
||||
|
|
|
Solmead has the correct answer. For more info you can look at XML Comments. |
||
|
|
|
|
Do XML commenting , like this
|
|||
|
|