how to get key value from json object in csharp

Code Example - how to get key value from json object in csharp

                
                        //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"];