此示例代码演示如何使用XElement.Load()方法从文件中加载XML。
示例代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
namespace Demo02Ex01
{
class Program
{
static void Main(string[] args)
{
XElement Books = XElement.Load(@"C:/LINQ/Books.xml");
Console.WriteLine(Books);
}
}
}
标签:XML,示例,XElement,System,LINQ,从文件,Books,using
From: https://blog.51cto.com/u_16173572/6592915