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 效果
时间: 2024-10-12 20:47:37