HI,
I am using VS 2012 and C#. I have a Xml of the below type:
<Results><Result ID="0" Code="-2130575340">
<ErrorText>Error data.</ErrorText></Result>
<Results><Result ID="1" Code="0">
<ErrorText></ErrorText></Result>...so on
</Results>"
I want to read the XML and create a datatable based on "Code != 0".
How to achieve this using C# and also want to consider performance when the xml is read and datatable is created.
Thanks
Go to the complete details ...