|
Question : Convert XML String to Dataset
|
|
I am receiving the following XML string from a webservice. I want to convert it to a usable dataset. Or I want the best way to locate the email between the tags.
http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> > 0e> Successful Call [email protected]ail>
|
|
Answer : Convert XML String to Dataset
|
|
DataSet.ReadXml(new System.IO.StringReader("xml"));
|
|
|