I need some help to map a json array without keys. For examples:
[
"value1",
234,
3034,
"data",
[
"some value",
null,
2020
],
]
I created a class based on these values received, but i'm not able to map to a class object. I just could access this data using a dynamic variable, like:
dynamic object = DataFromJson();
var firstvalues = object[0]; // "value1"
My json is too big with many arrays inside, so accessing with indexes is a big big process.
Does someones know how to access this kind of data and map to a class?