vote up 0 vote down star

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?

flag

1 Answer

vote up 1 vote down check

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|flag
Thanks! I am honored that Jon Skeet answered my question =) – jrummell Oct 2 at 20:19

Your Answer

Get an OpenID
or

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