I have this JSON file. And I wanna read id,name, age and their values from inside all constructors Animal dynamically in C#. Does anyone know how to do it? Thanks a lot.
new Animals(
new Animal(
"id": "001",
"name": "Monkey",
"age": "2",
),
new Animal(
"id": "002",
"name": "Elephant",
"age": "4",
)
)