AcManager.Tools.Helpers.AcStringValues.CountryFromTag C# (CSharp) Method

CountryFromTag() private method

private CountryFromTag ( [ tag ) : string
tag [
return string
        public static string CountryFromTag([NotNull] string tag) {
            var key = tag.Trim().ToLower();
            return DataProvider.Instance.TagCountries.GetValueOrDefault(key) ?? DataProvider.Instance.Countries.GetValueOrDefault(key);
        }