1
Reply

Add root node after load data from dataset in XML using C#

Rehan Shaikh

Rehan Shaikh

Aug 18 2015 5:49 AM
343
XmlDocument xmlDoc = new XmlDocument();
XmlNode rootNode = xmlDoc.CreateElement("FutureJobs");
xmlDoc. AppendChild(rootNode2);
xmlDoc2.LoadXml(ds.GetXml());

Answers (1)