System.Globalization.CultureTypes Enumeration

Assembly: Mscorlib.dll
Namespace: System.Globalization
Summary
Defines the types of culture lists that can be retrieved using CultureInfo.GetCultures.
C# Syntax:
[Flags]
[Serializable]
public enum CultureTypes
Remarks
These culture types serve as a filter that limits which cultures are returned by CultureInfo.GetCultures.

For more information on cultures, see CultureInfo.

See also:
System.Globalization Namespace | CultureInfo.GetCultures

System.Globalization.CultureTypes Member List:

Public Fields
AllCultures Refers to all cultures.
InstalledWin32Cultures Refers to all cultures that are installed in the system.
NeutralCultures Refers to cultures that are associated with a language but are not specific to a country/region. The names of these cultures consist of the lowercase two-letter code derived from ISO 639-1. For example: "en" (English) is a neutral culture. The invariant culture is included in the array of cultures returned by CultureInfo.GetCultures with this value.
SpecificCultures Refers to cultures that are specific to a country/region. The names of these cultures follow the RFC 1766 standard in the format "<languagecode2>-<country/regioncode2>", where <languagecode2> is a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> is an uppercase two-letter code derived from ISO 3166. For example, "en-US" (English - United States) is a specific culture.

Hierarchy:


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.