Kimono.KLocale.CountryCodeToName C# (CSharp) Method

CountryCodeToName() public method

Convert a known country code to a human readable, localized form. If an unknown country code is supplied, empty string is returned; this will never happen if the code has been obtained by one of the KLocale methods. name="code" the country code
public CountryCodeToName ( string country ) : string
country string
return string
        public string CountryCodeToName(string country)
        {
            return (string) interceptor.Invoke("countryCodeToName$", "countryCodeToName(const QString&) const", typeof(string), typeof(string), country);
        }