首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Windows Mobile >

wp 操作xml的时候遇到的有关问题

2012-09-23 
wp 操作xml的时候遇到的问题XDocument xdoc XDocument.Load(Global.DATA_XML_FILE_PATH)var data fro

wp 操作xml的时候遇到的问题
XDocument xdoc = XDocument.Load(Global.DATA_XML_FILE_PATH);
var data = from qurey in xdoc.Descendants(Global.NODE_RECORD)
  select new Record 
  {

  };


些了如上的代码,
一直报错,报错信息如下:

Error1Could not find an implementation of the query pattern for source type 'System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement>'. 'Select' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?

我已经添加了System.Xml.Linq.dll,并且using了。

哪位大侠知道这是为什么啊?



[解决办法]
Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?

热点排行