如何将jobobject转换为dictionary ?
欢呼
由于JObject
实现了IDictionary<TKey, TValue>
,您可以创建一个new Dictionary<TKey, TValue>()
,将该对象传递给构造函数。