我有这个类
public class Image
{
public string url { get; set; }
public string url_40px { get; set; }
public string url_50px { get; set; }
}
public class Category
{
public List<int> ancestor_ids { get; set; }
public int parent_id { get; set; }
public List<object> children_ids { get; set; }
public string nodename { get; set; }
public int num_parts { get; set; }
public List<Image> images { get; set; }
public string __class__ { get; set; }
public int id { get; set; }
}
我像这样反序列化它
retObject = JsonConvert.DeserializeObject(Of Category)(jsonResp)
但是对于返回的类别列表,如何转换为List<Category>
?谢谢
DeserializeObject
的类型参数必须List<Category>
而不是Category
。
在 C# 中,这将是JsonConvert.DeserializeObject<List<Category>>(json)
在 VB.Net,这将是JsonConvert.DeserializeObject(Of List(Of Category))(json)