vote up 4 vote down star

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

alt text alt text

How can I have that for functions and properties I write?

flag

7 Answers

vote up 6 vote down check

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

link|flag
To emphasize: That is triple-slash in C++/C# (normal comments are double-slash). And in VB, its two single-quotes, not a double-quote. – abelenky Feb 9 at 20:06
It's actually three single quotes in vb – Joel Coehoorn Feb 9 at 20:13
Actually, in VB, it's 3 single quotes: ''' – hometoast Feb 9 at 20:13
us VB-folk are always left out XD – hometoast Feb 9 at 20:13
vote up 4 vote down

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 :)

link|flag
Thanks for mentioning GhostDoc. – Ali Feb 9 at 21:42
vote up 9 vote down

What you need is xml comments - basically, they follow this syntax (as vaguely described by Solmead):

C#

///<summary>
///This is a description of my function.
///</summary>
string myFunction() {
     return "blah";
}

VB

'''<summary>
'''This is a description of my function.
'''</summary>
Function myFunction() As String
    Return "blah"
End Function
link|flag
Hm.. I'm sorry that SO couln't color the VB code a little more pedagogically... – Tomas Lycken Feb 9 at 20:10
vb actually uses three single quotes for xml comments, not two – Joel Coehoorn Feb 9 at 20:15
Wupp! You are, of course, correct - but I had to open VS and try it out before I believed you ;) Thanks for correcting me, though! – Tomas Lycken Feb 9 at 21:21
vote up 0 vote down

Also the visual studio add-in ghost doc will attempt to create and fill-in the header comments from your function name.

link|flag
vote up 1 vote down

use /// to begin each line of hte comment and have the comment contain the appropriate xml for the meta data reader.

///<summary>
/// this method says hello
///</summary>
public void SayHello();

Although personally, I believe that these comments are usually misguided, unless you are developing classes where the code cannot be read by its consumers.

link|flag
they're good for shortcuts reminders, or anywhere you have library code where maybe the code is readable but it takes a little extra work to get to it. – Joel Coehoorn Feb 9 at 20:14
I agree with you in theory, but if you use that ghostdoc thing, then you are raising the noise/signal ratio to such an extent that the rest of the comments are useless. – DevelopingChris Feb 10 at 15:26
vote up 0 vote down

Solmead has the correct answer. For more info you can look at XML Comments.

link|flag
vote up 2 vote down

Do XML commenting , like this

/// <summary>
/// This does something that is awesome
/// </summary>
public void doesSomethingAwesome() {}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.