Kimono.KLocale.Country C# (CSharp) Method

Country() public method

Returns the country code of the country where the user lives. defaultCountry() is returned by default, if no other available. Use countryCodeToName(country) to get human readable, localized country names.
public Country ( ) : string
return string
        public string Country()
        {
            return (string) interceptor.Invoke("country", "country() const", typeof(string));
        }