111,126
社区成员
发帖
与我相关
我的任务
分享XmlDocument doc = new XmlDocument();
doc.LoadXml(textBox1.Text);XmlDocument doc = new XmlDocument();
XmlDeclaration xmlDec = doc.CreateXmlDeclaration("1.0", "gb2312", null);
XmlElement root= doc.CreateElement("root");
doc.AppendChild(setting);
XmlElement abc = doc.CreateElement("abc");
abc .InnerText = "test";
setting.AppendChild(abc );
doc.InsertBefore(xmlDec, root);
doc.Save("test.xml");