如何在C#中读取JSON文件?

时间:2013-04-12 14:30:48

标签: c# json

我有这个JSON文件。我想在C#中动态地从所有构造函数Animal中读取id,name,age和它们的值。有谁知道怎么做?非常感谢。

new Animals(
  new Animal(
   "id": "001",
   "name": "Monkey",
   "age": "2",
  ),
  new Animal(
   "id": "002",
   "name": "Elephant",
   "age": "4",
  )
)

0 个答案:

没有答案