C# XML 读取xml文件内容并输出到控制台
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# XML 读取xml文件内容并输出到控制台相关的知识,希望对你有一定的参考价值。
1 xml文件
2 代码
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 //1.xml文件的格式必须是正确的 15 XDocument file = XDocument.Load("1.xml"); 16 Console.WriteLine(file.Root); 17 Console.ReadKey(); 18 } 19 } 20 }
3 效果
以上是关于C# XML 读取xml文件内容并输出到控制台的主要内容,如果未能解决你的问题,请参考以下文章
c# 中,如何读取XML文件,并将读取到的内容显示到TreeView中
控制台应用程序 - 如何读取 xml 文件中的 json 文件?