20
http://bbs.csdn.net/topics/391960887#post-401205330
你确认你用三楼代码试过吗?
你确认你用三楼代码试过吗?
180
本人存放在了UserInfo.xml文件中
<?xml version="1.0" encoding="utf-8"?> <config> <Goods> <Item ID="1005090" Title="手机" /> <Item ID="1005091" Title="电脑" /> <Item ID="1005092" Title="平板" /> </Goods> </config>
var data = (from e in XElement.Load(@"E:\WebApi\HelloWebAPI\TestClient\XML\UserInfo.xml").Element("Goods") .Elements() select new { ID = e.Attribute("ID"), Title = e.Attribute("Title"), }).ToList(); data.ForEach(i => System.Console.WriteLine(i.ToString())); Console.ReadLine();