0

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",
  )
)
user2095405
  • 347
  • 1
  • 4
  • 15
  • There are some resources here at Stackoverflow, like this http://stackoverflow.com/questions/13297563/read-and-parse-a-json-file-in-c-sharp – Henrique Baggio Apr 12 '13 at 14:34

0 Answers0