Sage.Integration.Northwind.Application.Toolkit.CountryCodes.GetCountry C# (CSharp) Метод

GetCountry() публичный Метод

public GetCountry ( string countryCode ) : string
countryCode string
Результат string
        public string GetCountry(string countryCode)
        {
            string temp = countryCode.ToUpper();
            if (this.codes.ContainsKey(temp))
                return temp;
            if (this.codes.ContainsValue(temp))
                return (string)codes[temp];
            return "";
        }