📅  最后修改于: 2022-03-11 14:48:39.248000             🧑  作者: Mango
//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"];