Hello all,
can you tell me what’s the correct way to deserialize a list of dictionary?
This is how my current code is written
var listOfDic = JsonConvert.DeserializeObject(Of List(Of Dictionary(Of String, String)))(strDictionary)
Whats the error message? Can you try it with Newtonsoft.Json so it becomes
Newtonsoft.Json.JsonConvert.DeserializeObject(Of List(Of Dictionary(Of String,String)))(strDictionary)
and the value of strDictionary should be something like this
[{"a":"b","b":"c"},{"a":"b","b":"c"}]