I have a requirement,where i have to modify multiple XML files when i rename an entity in my UI.
Which one is best :
1.Copying the XML file into XMLDocument object,make the change and then save it.
OR
2.Read the XML file to a dataset.And modify the DataSet.And use TextWriter to WRITE the data to XML file again.
I have nested and complex XML file,like below.
”
.
.
”
Appreciate any help…