11

私はこのクラスを持っています

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>ですか? ありがとう

4

1 に答える 1

23

の型パラメータはではなく であるDeserializeObject必要があります。List<Category>Category

C# では次のようになります。JsonConvert.DeserializeObject<List<Category>>(json)

そしてVB.NetではJsonConvert.DeserializeObject(Of List(Of Category))(json)

于 2012-06-27T06:54:49.710 に答える