C#如何将两个XmlDocument合并为一个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

上一篇:[Apache] Apache 從 2.2 換至 2.4 httpd.conf 的調整筆記 (windows 環境)


下一篇:C#开发ActiveX控件及指纹采集