{
"id":"123", "result":
{
"0": { "children_id": "0", "name": "some name" },
"1": { "children_id": "1", "name": "some other name" }
}
}
我有这个 JSON 字符串,如何使用 JSON.NET http://json.codeplex.com反序列化它?
我正在尝试制作一些可以容纳我的 json 对象的类,但我不知道如何容纳这个“0”和“1”。
public class Data
{
public string children_id { get; set; }
public string name { get; set; }
}
public class RootObject
{
public string id { get; set; }
public List<Data> result { get; set; }
}