Beispiel #1
0
 public static string GetRegionKey(Country country)
 {
     return country.Region;
 }
Beispiel #2
0
        public static string GetFirstNameKey(Country country)
        {
            char key = char.ToLower(country.Name[0]);

            if (key < 'a' || key > 'z')
            {
                key = '#';
            }

            return key.ToString();
        }