I have my code working fine, but I can\'t seem to be able to get to the deeper parts of the tree. I\'m trying to pull the longitude and the latitude. The code below pulls \'
The syntax for 'geometry' -> 'location' -> 'lat' and 'lng' is:
JObject data = JObject.Parse(result); string lat = (string)data["results"][0]["geometry"]["location"]["lat"]; string lng = (string)data["results"][0]["geometry"]["location"]["lng"];