using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using System.IO;
namespace LinqToXML
{
class Program
{
static void Main(string[] args)
{
//获取当前应用程序目录下Area.xml文件的路径
string _filePath = Path.Combine(System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase, "Area.xml");
FileInfo fiXML = new FileInfo(_filePath);
&n