I have an XmlDocument that already exists and is read from a file.
I would like to add a chunk of Xml to a node in the document. Is there a good way to create and a
All that I do is creating a new dataset object and open the xml file using ReadXML myDataset.ReadXML(path and file name).
myDataset.ReadXML(path and file name)
Then add or remove the rows that I need and save the document again using myDataset.WriteXML(path and file name).
myDataset.WriteXML(path and file name)
Bye.