我是使用json.net的新手,但我希望将以下内容解析为对象
"Properties" :
{
"Source": "House",
"Width": 312,
"Height": 190
"ExternalLink": null,
"Link": "#"
}
可以将上面的对象解析为字典,其中键为"Source",值为"House"。我正在使用Newtownsoft json.net库
你可以试试这样想但是你需要有一个你反序列化到
的类class Data{
public string Name;
public object Value;
}
Dictionary<string, object> dictionary = JsonConvert.DeserializeObject<Data>(yourjson.ToDictionary(x=>x.Name, y=>y.Value));