How to convert JToken to Dictionary

how to convert JToken to Dictionary

Aug.09,2021

has been resolved

.ToDictionary(k => k.ToString(), v => v.ToString())

should be

.ToObject<Dictionary<string,object>>();
Menu