如何从JSON字符串获取ID属性的列表?

时间:2019-05-15 01:53:43

标签: c# json json.net

我使用newtonsoft解析一些JSON。此JSON不友好,因此如何使用newtonsoft lib从C#中的JSON字符串获取ID属性的列表? 这是我的JSON字符串:

{
   "entries":[
      {
         "entry":{
            "search":{
               "score":1.739532
            },
            "properties":{
               "name":"Document1.pdf",
               "id":"dbdd7640-53af-4d5d-91f9-b2f228a49888"
            }
         }
      },
      {
         "entry":{
            "search":{
               "score":1.625712
            },
            "properties":{
               "name":"Document2.pdf",
               "id":"148f525a-1245-4fce-9ef5-787728bc762f"
            }
         }
      }
   ]
}

0 个答案:

没有答案