我在WP8 C#项目中使用Newtownsoft.Json。
我无法找出为什么我的JArray
对象无法在LINQ to JSON中使用Select
方法。
我有cs文件:
using Windows.Data.Json;
using Newtonsoft.Json.Linq;
然后:
JsonObject jsonObject = new JsonObject();
var sr = new StreamReader(e.Result);
var lignes = sr.ReadToEnd();
JObject o = JObject.Parse(lignes);
JArray featureArray = (JArray)o["features"];
IList<ItemViewModel> features = featureArray.Select(p => new ItemViewModel ...
.Select
会抛出编译错误。
我错过了什么?
答案 0 :(得分:1)
Select
是System.Linq
命名空间中的扩展方法。
您需要包含
using System.Linq;
代码顶部以及其他using
语句。