User-148788041 posted
hi
i have the following code. i want to add the deserialized json to dictionary like
Dim ResponseFromServer As String = System.IO.File.ReadAllText("json1.json")
Dim jsonResult = (Newtonsoft.Json.JsonConvert.DeserializeObject(Of Rootobject)(ResponseFromServer))
Dictionary<string,string> str = new Dictionary<string,string>();
str.Add("result",jsonResult); error here
Error converting Jsonobject to string