我想做一个LINQ到XML XElement的深度复制。我想这样做的原因是在文档中有一些节点,我想创建修改的副本(在同一文档中)。我没有看到一个方法来做到这一点。
我可以将元素转换为XML字符串,然后重新解析它,但我想知道是否有一个更好的方法。
没有必要重新解析。 XElement的一个构造函数采用另一个XElement,并对其进行深层复制:
原文链接:https://www.f2er.com/xml/293875.htmlXElement original = new XElement("original"); XElement deepCopy = new XElement(original);
这里有几个单元测试来演示:
[TestMethod] public void XElementShallowCopyShouldOnlyCopyReference() { XElement original = new XElement("original"); XElement shallowCopy = original; shallowCopy.Name = "copy"; Assert.AreEqual("copy",original.Name); } [TestMethod] public void ShouldGetXElementDeepCopyUsingConstructorArgument() { XElement original = new XElement("original"); XElement deepCopy = new XElement(original); deepCopy.Name = "copy"; Assert.AreEqual("original",original.Name); Assert.AreEqual("copy",deepCopy.Name); }