Update XML file

I want to replace an XML node that is not a child of the root element. How can I do this - not in .NET 3.5?

I don't know the exact path to the node I want to replace, I am getting node by XPath query like:

XmlElement root = doc.DocumentElement;
oldItem = root.SelectSingleNode("//Node1[@name='aaa']//Node2[Item='bbb']/Value");

      

How do I replace this old item?

+2


a source to share


1 answer


Use root.SelectSingleNode("query").Value = [New value]



+3


a source







All Articles