Equate

<< Click to Display Table of Contents >>

Navigation:  EasyDotNet documentation > Classes > TCultureInfo class >

Equate

Previous pageReturn to chapter overviewNext page

Defines the types of culture lists that can be retrieved using CultureInfo.GetCultures(CultureTypeEnum) method.

CultureTypeEnum               EQUATE(LONG)

 

Cultures that are associated with a language but are not specific to a country/region. The names of .NET Framework cultures consist of the lowercase two-letter code derived from ISO 639-1. For example: "en" (English) is a neutral culture.

CultureType::NeutralCultures EQUATE(1)

 

Cultures that are specific to a country/region. The names of these cultures follow RFC 4646 (Windows Vista and later). The format is "<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" for English (United States) is a specific culture.

CultureType::SpecificCultures EQUATE(2)

 

All cultures that are installed in the Windows operating system. Note that not all cultures supported by the .NET Framework are installed in the operating system.

CultureType::InstalledWin32Cultures   EQUATE(4)

 

All cultures that ship with the .NET Framework, including neutral and specific cultures, cultures installed in the Windows operating system, and custom cultures created by the user.

CultureType::AllCultures     EQUATE(CultureType::NeutralCultures+CultureType::SpecificCultures+CultureType::InstalledWin32Cultures)

 

Custom cultures created by the user.

CultureType::UserCustomCulture   EQUATE(8)

 

Custom cultures created by the user that replace cultures shipped with the .NET Framework.

CultureType::ReplacementCultures EQUATE(16)