📌  相关文章
📜  如何在 c# 代码示例中从 json 对象获取键值

📅  最后修改于: 2022-03-11 14:48:39.248000             🧑  作者: Mango

代码示例1
//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"];