码迷,mamicode.com
首页 > Windows程序 > 详细

C# XML 给xml文件添加根节点

时间:2016-10-17 09:21:21      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

1 代码

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 using System.Xml.Linq;
 7 
 8 namespace ConsoleApplication8
 9 {
10     class Program
11     {
12         static void Main(string[] args)
13         {
14             XDocument xmlFile = new XDocument();
15 
16             //设置根元素
17             XElement root =new XElement("cultures");
18 
19             //添加根节点并且只能一个
20             xmlFile.Add(root);
21             //保存文件
22             xmlFile.Save("test.xml");
23 
24             //读取程序写好的xml文件,打印到控制台
25             var readXml= XDocument.Load("test.xml");
26             Console.WriteLine(readXml.Root);
27            
28             Console.ReadKey();
29         }
30     }
31 }

 

 

2 效果

技术分享

 

3 其实xml还有一行文本没有被打印出来

技术分享

C# XML 给xml文件添加根节点

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5968429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!