C#从Json数组中检索值

时间:2016-02-09 14:48:36

标签: c# json

我想从c#controller中的Json数组中检索值。这是我的json数组:

 {
    name : "Name 1", 
    description : "Description 1",
     count : 6
    }

我如何检索c#controller中的每个属性?我知道如果我处理对象怎么做但这个json不是来自Object。

 public IList[] getList(IList[] myList)
        {
  // How to get the value of the name and the description here ?

}

1 个答案:

答案 0 :(得分:1)

我将最终创建一个具有我需要的所有属性的类,然后以与对象相同的方式检索它们:

 CustomClass myClass ;

 string name = myClass.name
 string description = myClass.description;
 int count= myClass.count
 ...