How to read a Xml string into dataSet

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I use a string variable which read an XML file from WebService.
The name of the string variable is sXML;

Then I new a DataSet:
DataSet ds = new DataSet();

How can I read sXML into ds?
 
Back
Top