I have problems with parsing JSON.
JSON
[
{
"obj" :
{
"id" : 2001,
"modified" : 1365551172.000000000,
"size" : 19,
}
},{
"obj2" :
{
"id" : 2001,
"modified" : 1365551790.000000000,
"size" : 19,
}
}
]
when I try to parse with
var dict = jss.Deserialize<Dictionary<string, Dictionary<string, dynamic>>>(string);
var json = jss.Serialize(dict);
there is an exception, that arrays couldn't be parsed. Is there anything I have overseen ? Is there any other library to use and how?
var dict = jss.Deserialize<List<Dictionary<string, Dictionary<string, dynamic>>>>(string);