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操作详解的主要内容,如果未能解决你的问题,请参考以下文章

C++引用详解

C++引用详解

C++引用详解

C++之引用的详解

C++ 指针与引用详解

学习干货速进,小白都能看懂的C语言操作符详解