public static string GetRegionKey(Country country) { return country.Region; }
public static string GetFirstNameKey(Country country) { char key = char.ToLower(country.Name[0]); if (key < 'a' || key > 'z') { key = '#'; } return key.ToString(); }