SyntaxFix
Write A Post
Hire A Developer
Questions
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"];