我在WP8C#项目中使用Newtownsoft.Json。
我不知道为什么我的JArray
对象不能使用LINQ到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
引发编译错误。
我错过了什么?
Select
是System.Linq
命名空间中的一个扩展方法。
您需要包括
using System.Linq;
以及其他using
语句。