-2

我是使用 json.net 的新手,但我希望将以下内容解析为一个对象

"Properties" :
                                {
                                    "Source": "House",
                                    "Width": 312,
                                    "Height": 190
                                    "ExternalLink": null,
                                    "Link": "#"
                                }

是否可以将上面的对象解析为 IDictionary,其中键是例如“Source”,值是“House”。我正在使用 Newtownsoft json.net 库。

4

1 回答 1

0

你猫尝试这样的想法,但你需要有一个你反序列化的类

class Data{
  public string Name;
  public object Value;
}
 Dictionary<string, object> dictionary = JsonConvert.DeserializeObject<Data>(yourjson.ToDictionary(x=>x.Name, y=>y.Value));
于 2013-01-12T03:40:53.647 回答