The values of this enumeration determine which cultures are returned by CultureInfo.GetCultures( ) . NeutralCultures specifies language-specific cultures without any regional or country association. SpecificCultures specifies cultures that are identified by both language and region. public enum CultureTypes { NeutralCultures = 0x00000001 , SpecificCultures = 0x00000002 , InstalledWin32Cultures = 0x00000004 , AllCultures = 0x00000007 } Hierarchy System.Object Passed ToCultureInfo.GetCultures( ) |