how to deserialize dictionary array of objects in c# till it's fully completed code example
Example: deserialize object to dictionary c#
string json = @"{""key1"":""value1"",""key2"":""value2""}";
var values = JsonConvert.DeserializeObject<Dictionary<string, string>>(json);