I have a nested json array looking like this:
[
[
[
[1234.5 ,9876,5],
[1234.5 ,9876,5]
],
[
[1234.5 ,9876,5],
[1234.5 ,9876,5]
]
],
[
[
[1234.5 ,9876,5],
[1234.5 ,9876,5]
],
[
[1234.5 ,9876,5],
[1234.5 ,9876,5]
]
]
]
I already saw many posts with answers if you have named keys in objects. However I just have large, nested array's. How should you make objects which can store this in c#? The length of the array's can vary.