I have following json
structure:
{
[{
"name": "2542",
"type": "FOLDER",
"size": 0,
"time": 0,
"items": [{
"name": "10-1432927746000.ksf",
"type": "FILE",
"size": 225,
"time": 1433019520,
"items": null,
"info": {
"seller": 10,
"count": 2
}
}],
"info": null
}]
}
how can I parse it with C#? I have try var results = JsonConvert.DeserializeObject<dynamic>(json)
but the result is an error:
Invalid property identifier character: [. Path '', line 1, position 1.