C#XML操作详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#XML操作详解相关的知识,希望对你有一定的参考价值。
添加引用
using System.Xml;
创建XML文件
XmlDocument xmldoc=new XmlDocument(); //加入XML的声明段落:<?xmlversion="1.0" encoding="utf-8"?> XmlDeclaration xmldecl=xmldoc.CreateXmlDeclaration("1.0", "utf-8", null); xmldoc.AppendChild(xmldecl); //保存创建好的XML文档 xmldoc.Save(@"D:\user.xml");
创建节点
//创建根节点 XmlElement xmlroot = xmlDoc.CreateElement("user"); xmlDoc.AppendChild(xmlroot);
以上是关于C#XML操作详解的主要内容,如果未能解决你的问题,请参考以下文章