博客园站长
这是人类成长进步中记录的每一时刻
string a=  Dal.cs1();
          string b = Dal.cs2();

          XmlDocument doc1 = new XmlDocument();
          doc1.LoadXml(a);
          XmlDocument doc2 = new XmlDocument();
          doc2.LoadXml(b);
          XmlNode aaa1 = doc1.SelectSingleNode("//root");
          XmlNode bbb1 = doc2.SelectSingleNode("//root");
          XmlDocument xmlDoc = new XmlDocument();          
          string aa = "<one>" + aaa1.InnerXml + "</one>";
          string bb = "<tow>" + bbb1.InnerXml + "</tow>";
          xmlDoc.LoadXml("<root>" + aa + bb + "</root>");

  

posted on 2012-07-19 11:12  dm3344  阅读(1305)  评论(0编辑  收藏  举报