I am facing a problem while parsing the XML file. Actually one of element tag in the XML file contains a special character which is &
<organization>AT&T</organization>
and for parsing this xml file i am using-
XDocument xmlDoc = XDocument.Parse(xml);
and when my xml file goes for parsing i am getting following exception- ' ' is an unexpected token. The expected token is ';'. Line 43, position 15.
How to handle it so that i could have my original data i.e AT&T and also i bypass this exception. Any link or help would be highly appropriated.