Get value from JSON with JSON.NET

后端 未结 3 1196
眼角桃花
眼角桃花 2020-12-01 13:47

I try to use http://www.codeplex.com/Json to extract values ​​from a json object.

I use imdbapi.com and they return json like this:

{\"Title\": \"Sta         


        
3条回答
  •  旧时难觅i
    2020-12-01 14:38

    JObject API documentation

    I believe you are interested in the .Item[key] collection that returns JTokens.

    Full Documentation

提交回复
热议问题