I am trying to parse a JSON array that looks something like this:
{
"chatName": "Test",
"users": [
"User1",
"User2"
],
"someBooleanValue": true,
"someObjects": {
"object1": "someObjectValue1",
"object2": "someObjectValue2",
...
}
}
Is there a way to parse the someObjects array of objects, when I don't know how many objects the array will have before I start processing the JSON file?
All the parsing is done using Json.NET.