C#Foreach循环遍历json-object,获取密钥

时间:2017-04-20 20:31:51

标签: c# json foreach json.net

所以我的json看起来像这样:

{
     "hello1": 1.0,
     "hello2": 1.3,
     "hello3": 4.0,
}

现在我想循环遍历对象,并将键和值作为字符串。

这是我有多远:

dynamic json = JsonConvert.DeserializeObject(/*JSON*/); // load json
            foreach (var item in json)
            {...}

0 个答案:

没有答案