I\'m trying to get coordinates from google maps when user enters 2 values of the address (for now) like city and street.Having trouble with deserialization of the Json string wh
You need to use another top-level class to deserialize responce
Try this:
public class Responce
{
public string status{get;set;}
public List<Result> results {get;set;}
}
...
var responce = JsonConvert.DeserializeObject<Responce>(Jsonstring);
DoSomething(responce.results);