Hi, I get the Json from google. it has many details on many things but I just want the longitude and latitude. I have been successfully deserialized json using:
JavaScriptSerializer jSerialize = new JavaScriptSerializer();
//var businessObject = jSerialize.Deserialize<string>(configuration);
Hashtable businessObject = jSerialize.Deserialize<Hashtable>(configuration);
var o = businessObject["results"];
So, my o object has all that stuff, anyway, I just need the longitude and latitude.. what is the best way to do it?
I cant seem to get the right definition to cast o into strictly typed class (error: cant cast to type)