I use xml comments in VS 2005 a lot but now I have a problem. I need to comment IFs, WHILEs, SELECT CASEs etc. But VS keeps telling me that it is impossible. Isn't there some workaround?

It would really help me.

link|improve this question

60% accept rate
%0 accept rate not good – mekici Feb 6 at 9:44
What does it mean the "accept rate" ? – Racky Feb 6 at 10:02
I still dont understand. But respect.. – Racky Feb 6 at 11:37
Oh, now I see.. I should click the "check box" If I find the answer usefull or final.. But how do I know that the answer is correct? – Racky Feb 6 at 11:48
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

XML comments are useful, because tools are able to read and understand them. So, for example, if you use a method in your code that has XML comments and hover over it, the IDE might tell you the <summary>. Or you could use them to generate a documentation website.

But none of this applies to inline comments. They are useful to you only if you are actually looking at the code in question, so there is no reason why tools should be able to understand them. And I don't know about any tools that do that.

But if you have some good reason to use XML comments inline (e.g. if you are using some custom documentation tool), there is nothing stopping you, it's still valid C#. But the compiler doesn't recognize such XML comments, so they won't be present in the XML file that is generated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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