I have a string containing xml e.g.:
<Person Name="Molly O'Mahony" />
I want to convert this to an XElement, maintaining the & apos ;
and not converting it to '
using
XElement.Parse(string);
creates the element <Person Name="Molly O'Mahony" />
Is this possible?