标签:c# 两个 xmldocument 合并 一个
XmlDocument xd = new XmlDocument(); //添加顶级结点(如果不添加一个节点的话,无法使用xd.DocumentElement.AppendChild,会报出:未将对象引用设置到对象的实例的错误) XmlElement xe = xd.CreateElement("XmlDocumentTest"); xd.AppendChild(xe); //第一个XmlDocument:vsXmlDocument1 XmlNode xnDesi = xd.ImportNode(vsXmlDocument1.DocumentElement, true); xd.DocumentElement.AppendChild(xnDesi); //第二个XmlDocument:vsXmlDocument2 XmlNode xnRun = xd.ImportNode(vsXmlDocument2.DocumentElement, true); xd.DocumentElement.AppendChild(xnRun); xd.Save(filePath);
C#如何将两个XmlDocument合并为一个XmlDocument
标签:c# 两个 xmldocument 合并 一个
原文地址:http://blog.csdn.net/jiankunking/article/details/42467609