Locale.GetISOCountries Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetISOCountries(Locale+IsoCountryCode) | |
GetISOCountries() |
Returns a list of all 2-letter country codes defined in ISO 3166. |
GetISOCountries(Locale+IsoCountryCode)
[Android.Runtime.Register("getISOCountries", "(Ljava/util/Locale$IsoCountryCode;)Ljava/util/Set;", "", ApiSince=34)]
public static System.Collections.Generic.ICollection<string> GetISOCountries (Java.Util.Locale.IsoCountryCode type);
[<Android.Runtime.Register("getISOCountries", "(Ljava/util/Locale$IsoCountryCode;)Ljava/util/Set;", "", ApiSince=34)>]
static member GetISOCountries : Java.Util.Locale.IsoCountryCode -> System.Collections.Generic.ICollection<string>
Parameters
Returns
- Attributes
Applies to
GetISOCountries()
Returns a list of all 2-letter country codes defined in ISO 3166.
[Android.Runtime.Register("getISOCountries", "()[Ljava/lang/String;", "")]
public static string[] GetISOCountries ();
[<Android.Runtime.Register("getISOCountries", "()[Ljava/lang/String;", "")>]
static member GetISOCountries : unit -> string[]
Returns
An array of ISO 3166 two-letter country codes.
- Attributes
Remarks
Returns a list of all 2-letter country codes defined in ISO 3166. Can be used to create Locales. This method is equivalent to #getISOCountries(Locale.IsoCountryCode type)
with type
IsoCountryCode#PART1_ALPHA2
.
<b>Note:</b> The Locale
class also supports other codes for country (region), such as 3-letter numeric UN M.49 area codes. Therefore, the list returned by this method does not contain ALL valid codes that can be used to create Locales.
Note that this method does not return obsolete 2-letter country codes. ISO3166-3 codes which designate country codes for those obsolete codes, can be retrieved from #getISOCountries(Locale.IsoCountryCode type)
with type
IsoCountryCode#PART3
.
Java documentation for java.util.Locale.getISOCountries()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.