我正在尝试获取现有的 XML 文件并将其“嵌入”到另一个“根”XML 文件的另一个节点中。假设有一个现有 xml 文件的路径......
StreamReader reader = new StreamReader(path);
string lines = reader.ReadLine();
while (!reader.EndOfStream)
{
lines = reader.ReadLine();
}
XDocument doc = new XDocument(
new XComment("You can copy and paste or open the XML in Excel."),
new XElement("Root",
new XElement("logs",lines))
);
我最终得到这样的事情:
<Root><logs><log><username>otonomy</
需要一些解码编码帮助。