Hello all,
I have the following problem, can't manage to deserialize this json:
{
"items":
[
[
"string_1",
"string_2",
0,
null,
"string_3"
]
]
}
this is the c# class against I try to deserialize:
public class RootObject
{
public List<List>Object>> items { get; set; }
}
here the related RestSharp code:
var myItems = client.Execute<RootObject>(request).Data;
The myItems object is always null. The content type is "text/json" so the correct deserializer is fired, but I think the problem lies in the nested array..
any suggestions are highly appreciated!
Thanks