1
Answer

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

Rehan Shaikh

Rehan Shaikh

9y
2.7k
1
XmlDocument xmlDoc = new XmlDocument();
XmlNode rootNode = xmlDoc.CreateElement("FutureJobs");
xmlDoc. AppendChild(rootNode2);
xmlDoc2.LoadXml(ds.GetXml());
Answers (1)