show/hide this revision's text 2 edited body

It depends really. If all you want to do is have quotes in your XML string, then 'C'. A'.

But if there is meaning or you need to abstract the quote (i18n for example), XML affords richer options. For example:

<name>
  <given>Jesse</given>
  <family>Ventura</family>
  <nickName>the Body</nickName>
</name>

Overkill in many situations. But if you need to correctly handle many of the world's varied - and frequently inconsistent - naming schemes, I'd think about encoding your names along these lines. XML is great for this.

show/hide this revision's text 1

It depends really. If all you want to do is have quotes in your XML string, then 'C'.

But if there is meaning or you need to abstract the quote (i18n for example), XML affords richer options. For example:

<name>
  <given>Jesse</given>
  <family>Ventura</family>
  <nickName>the Body</nickName>
</name>

Overkill in many situations. But if you need to correctly handle many of the world's varied - and frequently inconsistent - naming schemes, I'd think about encoding your names along these lines. XML is great for this.