I need to parse an xml string (.NET, C #), which, unfortunately, is not very well formed. xml stream i get
<fOpen>true</fOpen> <ixBugParent>0</ixBugParent> <sLatestTextSummary></sLatestTextSummary> <sProject>Vantive</sProject> <ixArea>9</ixArea>
I tried using an xml reader, but it crashed because it thinks, and rightfully, there are two node elements when it tries to parse
Is there something I can do with this? I cannot change the XML because I have no control over the code that sends the XML back.
Any help would be appreciated.
Thanks and Regards
Gagan Janjua
source share