how do I convert a JObject to Dictioary?
Cheers
Since JObject
implements IDictionary<TKey, TValue>
, you could just create a new Dictionary<TKey, TValue>()
passing that object into the constructor.
how do I convert a JObject to Dictioary?
Cheers
Since JObject
implements IDictionary<TKey, TValue>
, you could just create a new Dictionary<TKey, TValue>()
passing that object into the constructor.
精彩评论