How to convert json to list and dictionary in C# recursively it child (like python).
Example
{"array1":
[
object1:
{
"property1": "value1",
"property2": "value2"
}
]}
After convert I have an array name array1. array1[0] return a dictionary. array1[0]["property1"] return "value1".
I want to do it recursively. Because I dont know structure of this json.