I take a json object and deserialize it to a variable. When I debug, I see that each element listed like an array in Results View, but no matter what I tried, I couldn't get these values. My json string:
string json_string = { "baslik" : "bbbbb", "soru1" : "11","soru2" : "22","soru3" : "33"};
var my_object = JsonConvert.DeserializeObject(json_string);
When I debug, I see 'my_object' has Results View and Dynamic View which hold elements I need. How can I get them. I tried everything and searched in web but could not found anything.