How to get key value from json object in c# Code Example
how to get key value from json object in c#
//You want to convert it to an object first and then
//access normally making sure to cast it.
JObject obj = JObject.Parse(json);
string name = (string) obj["Name"];