Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm documenting a few methods I wrote in C# that deal with parsing tokens. Due to some technical restraints in other areas of the system, these tokens need to take the form of XML elements (i.e., <tokenName />). I'd like to put the format of those tokens in the summary statement itself.

However, this throws an error: Badly formed XML -- A name was started with an invalid character". Is there any sort of escape character sequence I can use to embed XML in my C# summary comments?

share|improve this question

3 Answers

up vote 21 down vote accepted

Yes. Use standard XML escaping. For example:

<summary>This takes a &lt;token1&gt; and turns it into a &lt;token2&gt;</summary>

It's not super-easy to type or read as code, but Intellisense properly unescapes this and you see the right, readable thing in the tooltip.

share|improve this answer
1  
Beaten to it by 10 seconds :) – Jon Skeet Mar 3 '09 at 16:26
2  
@Andrew Arnott: Either that or a CDATA section. – casperOne Mar 3 '09 at 16:27
1  
<gasp>Jon Skeet is mortal!</gasp> – Joel Coehoorn Mar 3 '09 at 16:33

You need to use a CDATA section, like this:

<![CDATA[ your xml here ]]>

Example:

<![CDATA[ <name>Bob</name> ]]>
share|improve this answer
1  
If the token has a CDATA section itself you cannot embend it into a CDATA section. This requires escaping – crauscher Mar 23 '10 at 13:10

I use escape-sequences, because VisualStudios tooltip doesn't display anything that's inside a CDATA-section.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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