up vote 1 down vote favorite
share [g+] share [fb]

In the following example, & and Δ are OK but Δ is not (the latter two are both Δ). The compiler issues a warning similar to:

warning CS1570: XML comment on 'XXX.DocumentedMethod()' has badly formed XML -- 'Reference to undefined entity 'Delta'.'
    /// <summary>
    ///  &amp; &Delta; &#916;
    /// </summary>
    public void DocumentedMethod()
    {

    }

What are the supported character entities for XML comments?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

It's not a matter of comments, it's XML itself. XML only inherently knows about &amp;, &lt;, &gt;, &apos; and &quot; as well as the numeric entities. Anything else has to be declared explicitly.

See section 4.6 of the spec for further information.

link|improve this answer
Thanks! I am honored that Jon Skeet answered my question =) – jrummell Oct 2 '09 at 20:19
feedback

Your Answer

 
or
required, but never shown

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