如何将Xml文件加载到队列中,然后读取文件并添加页眉和页脚,然后保存。
答案 0 :(得分:1)
您可以使用XDocument
类来操作.NET中的XML文件。例如:
XDocument doc = XDocument.Load("test.xml");
doc.Root.AddFirst(new XElement("header", "the header value"));
doc.Root.LastNode.AddAfterSelf(new XElement("footer", "the footer value"));
doc.Save("test.xml");