我正在尝试反序列化嵌套的 json 字符串
public class recentlySearchedAdd
{
public recentlySearchedAdd()
{
searchedLocations = new List<recentlySearchedLoc>();
}
public string status { get; set; }
public List<recentlySearchedLoc> searchedLocations { get; set; }
}
public class recentlySearchedLoc
{
public int id { get; set; }
public string location { get; set; }
}
这是处理json字符串的代码
//dummy json string
string json = "{\"status\": \"OK\", \"searchedLocations\": [{\"id\": 7, \"location\": \"California\"}, {\"id\": 4, \"location\": \"90007\"}, {\"id\": 3, \"location\": \"New York, NY\"}]}";
JavaScriptSerializer ser = new JavaScriptSerializer();
List<recentlySearchedAdd> recentlySearchedAddList = ser.Deserialize<List<recentlySearchedAdd>>(json);
Response.Write("count:"+recentlySearchedAddList.Count);
计数为 0……这段代码有什么问题