【发布时间】:2018-08-07 13:51:09
【问题描述】:
在 c# 中,如果我有这个
doc = new XmlDocument();
doc.LoadXml("<.....>");
doc.LoadXml("<.....>");
第二个是替换还是附加到 doc 对象?
【问题讨论】:
-
你尝试的时候发生了什么?
-
它怎么会知道 XML 文档是兼容的,并且具有相同的结构,因此它不会追加...
在 c# 中,如果我有这个
doc = new XmlDocument();
doc.LoadXml("<.....>");
doc.LoadXml("<.....>");
第二个是替换还是附加到 doc 对象?
【问题讨论】: