我有JSON這樣的:JSON.NET:反序列化JSON對象的一部分,以字典
{
"Property":"Blah blah",
"Dictionary": {
"Key1" : "Value1",
"Key2" : "Value2",
"Key3" : "Value3"
}
}
我要提取的「字典」對象作爲字典(所以它會像鍵1 = >值1等)。如果我只是直接使用「字典」對象,我可以使用:
JsonConvert.DeserializeObject<Dictionary<string, string>>
什麼是僅將Dictionary屬性作爲字典獲取的最佳方法?
在此先感謝! Tim
你如何從innerJobj(鍵入'JObject')到一個字典? – Brendan 2014-02-13 10:02:43