vote up 3 vote down star

Duplicate: http://stackoverflow.com/questions/308752/c-comments-tutorial#308770

What different kinds off comment styles do you use in your VS2008 C# code? Which do you prefer, and why? I've listed the obvoius ones that I allready know of below.

Single line comment or end of line comment:

//Comment goes here.

Single/Multi line comment in another color:

/// <summary>
/// Comment goes here.
/// </summary>

Multiline comment style:

/*
 * Comment... 
 * Comment goes here 
 */
flag

Wow. Really? I mean, this question has been asked at least twice before... – George Stocker Jan 6 at 15:45
I can see that now, but my search did not turn up anything. Still actually I'm unable to easily find even my own question if I search for "Comments in C#". Thats why I asked... – Sakkle Jan 7 at 8:49
I would also like to point out that I don't think this is an exact duplicate of the other thread. The other one concerns comments in general. I asked about preferance and explanations from the guys that have used C# for a while. But I wont be bothered to argue about it... – Sakkle Jan 7 at 8:53

closed as exact duplicate by Chris Lively Jan 6 at 16:12

11 Answers

vote up 10 vote down check

I always use // or /// comments:

// for single line comments

// for multi line
// comments

/// for xml documentation

I never use /* comments, due to their inability to be nested.

link|flag
There's nothing more painful that playing the "star" game when you just want to enable a single line in a large commented block. With slashes at the beginning of each line, it's a simple double stroke of the delete key. – Jeffrey Jan 6 at 15:25
+1 Full Ack. Especially since it is so easy to comment/uncomment text blocks wiht // in VS – divo Jan 6 at 15:28
Which is why VB.Net is so much better than C#, no multiline comments exist. – Kibbee Jan 6 at 15:33
I only use star comments for a short term change in a method call for debugging (eg obj.SuspectedMethod(param1, 0 /*param2*/); ) – plinth Jan 6 at 15:34
@Kibbee - What a croc! Better because of comments??? please...Progammers who think that shouldn't be considered programmers. – Micah Jan 6 at 15:36
vote up 13 vote down

If you need to comment out multiple lines at once, then don't forget your keyboard shortcuts!

CTRL + K + C = comment selection

CTRL + K + U = uncomment selection

link|flag
Oh... I won't :) They are a life saver – Sakkle Jan 6 at 15:36
Yep, use them all the time and they save a lot of time. – Crossbrowser Jan 6 at 15:37
It's so annoying working on legacy projects in 2003 and finding this + other shortcuts don't work :( – Zeus Jan 6 at 16:10
vote up 4 vote down

Inside function bodies I prefer // style comments because if for some reason I have to comment out a larger block of code with /* */ they will not cause problems.

link|flag
for me, that's what #if 0 #endif is for. – Kenny Jan 6 at 15:26
Kenny: yes it is pretty much the same, but your approach highlights the disabled code differently which is sort of a good thing. On the other hand, /* */ requires like, 7 less keystrokes which is a lot of effort :) – DrJokepu Jan 6 at 15:34
Oh yes and I think that your approach can be nested too. Neat, I will do that from now on. – DrJokepu Jan 6 at 15:36
vote up 2 vote down

For me, I use

// for single line comments

/*-----------------------------------------------------
for multi
line comments about blocks of code & file header info
-----------------------------------------------------*/

/// for xml documentation of public interfaces/members/etc..

//TODO/TBD/ETC: for me to keep track of stuff left to do
link|flag
vote up 2 vote down

I prefer the single or multi line comment...

//Comment

and

// <summary>
// Comment goes here.
// </summary>

These are easy to line up with code and are more legible. The C++ style multi-line comments are easy to lose track of. The // style of comments are very easy to use, since you can use Edit -> Advanced -> Comment Selection (and Uncomment Selection) to comment a large block of text in such a block all at once.

link|flag
vote up 2 vote down

I mostly prefer // over /* / as well. I tend to use / */ at the beginning of a block of code if it needs an in-depth explanation (especially if it's a screwball hack).

The one thing I haven't noticed mentioned yet is the use of /* */ for inline comments. Poor example, but for instance:

int i = 42 /*the answer*/ + 99 /*bottles of beer*/ + 69 /*everyone's favorite number*/;
link|flag
vote up 1 vote down

Theres also the TODO style of commenting:

//TODO: This is a TODO comment
link|flag
vote up 1 vote down

I use multiline comments some, but mostly end of line comments that comment on what's happening in a potentially confusing line of code.

My multiline comments are usually for an extended series of code that does something non-obvious.

Sometimes the comments end up being pretty cryptic like this one in some printing code

int oldp = page;   //  used to ensure more notes + more records does not cause page += 2

Usually I line up my line comments at a tab and try to line up multiple comments at the same tab stop.

link|flag
vote up 1 vote down

I use // Comment to comment lines of code - the 3 /// slashes are usually declared above methods/classes to specify what they do (description, return type, etc) and are a very good thing to do as you can create your documentation from them (for you or other developers)

link|flag
vote up 1 vote down

/// and // plus GhostDoc to generate comments.

link|flag
Yepp... we use GhosDoc where I do my programming as well – Sakkle Jan 6 at 15:37
vote up 1 vote down

I prefer // over /* */ since I think the latter leads to commenting less. With the former I can have comment for every line I want and not have excessive commment/code ratio.

Also, note that, you can have 2 different single line comments as

// explain why initializing to 42
int i = 42;

and

int i = 42; // short description as to why

I always prefer the former as it is more readable.

As for the ///, it sure is useful and needed if you are planning to generate XML documentation.

link|flag

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