by carl camera via i am a camera on 9/1/2006 3:22:00 PM
XmlDocument to DataSet in two lines. This is the quickest conversion I've found so far.
XmlDocument xdoc = MethodReturnsXmlDocument(); // convert to DataSet DataSet ds = new DataSet(); ds.ReadXml(new XmlNodeReader(xdoc));
Original Post: XmlDocument to DataSet
The content of the postings is owned by the respective author. CSharpFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on CSharpFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.