A Microsoft framework for building cross-platform mobile apps using .NET and C# with native performance and user interfaces.
The class CountryData is incorrect, you must have a type entry for the property country_name. I just paste your JSON as classes with the special paste of VisualStudio and got this:
public class Rootobject
{
public string country_code { get; set; }
public Country_Name country_name { get; set; }
public string id { get; set; }
public string _rid { get; set; }
public string _self { get; set; }
public string _etag { get; set; }
public string _attachments { get; set; }
public int _ts { get; set; }
}
public class Country_Name
{
public string en { get; set; }
}
Alon.