如何在C#中将一个Xml节点替换为另一个节点

时间:2012-12-07 11:55:38

标签: c# xml

如何将XML节点中的XML节点替换为另一个XML文档中的另一个XML节点。 请帮忙..

1 个答案:

答案 0 :(得分:3)

您可以使用LINQ to Xml XElement.ReplaceWith方法

// select node from one doc
XDocument xdoc1 = XDocument.Load(path_to_doc1);    
XElement one = xdoc1.Descendants("One").First(); 

// select node from another doc
XDocument xdoc2 = XDocument.Load(path_to_doc2);
XElement another = xdoc2.Descendants("Another").First(); 

// replace one xml node with another
one.ReplaceWith(another);
xdoc1.Save(path_to_doc1);