(二)写入XML的两种方式
2018-07-09 本文已影响0人
搬搬搬
1.XmlDocument类,标准的Dom方式
XmlDocument xDoc=new XmlDocument();
XmlElement xRoot=xdoc.CreateElment("Root");
xDoc.ApendChild(xRoot);
XmlAttribute xArr=xdoc.CreateAttribute("name");
xArr.value="zxd";
xRoot.Attributes.Apend(xArr);
xDoc.Save("exec.xml");
2.XDocument类
XDocument xDoc = new XDocument();
XElement xRoot = new XElement("Root");
xDoc.Add(xRoot);
XElement xPerson=new XElement("Person");
xPerson.SetAttributeValue("name","zxd");
xRoot.add("xPerson");
xDoc.Save("exec.xml");