.net – 如何在LINQ to XML中创建一个元素的深层副本?

前端之家收集整理的这篇文章主要介绍了.net – 如何在LINQ to XML中创建一个元素的深层副本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想做一个LINQ到XML XElement的深度复制。我想这样做的原因是在文档中有一些节点,我想创建修改的副本(在同一文档中)。我没有看到一个方法来做到这一点。

我可以将元素转换为XML字符串,然后重新解析它,但我想知道是否有一个更好的方法

没有必要重新解析。 XElement的一个构造函数采用另一个XElement,并对其进行深层复制:
XElement 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);
}
原文链接:https://www.f2er.com/xml/293875.html

猜你在找的XML相关文章