首页 > 代码库 > C# XML 给xml文件添加根节点
C# XML 给xml文件添加根节点
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文件添加根节点
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。