Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 xml 文件,两个文件都包含一个元素节点,比如“MarketData”。
我想要的是将 MarketData 节点从第二个文件替换为第一个文件。
我找到了我的问题的答案。这里供其他人参考...
OldNode.ReplaceWith(secondDocument.Element("MarketData"));
OldNode 是 XElement,secondDocument 是我们想要新节点的第二个 xml 文件。
谢谢