CultureInfo.Name Propiedad
Definición
Obtiene el nombre de la referencia cultural en el formato languagecode2-country/regioncode2.Gets the culture name in the format languagecode2-country/regioncode2.
public:
virtual property System::String ^ Name { System::String ^ get(); };
public virtual string Name { get; }
member this.Name : string
Public Overridable ReadOnly Property Name As String
Valor de propiedad
El nombre de la referencia cultural en el formato languagecode2-Country/regioncode2, si el CultureInfo actual depende de la referencia cultural; o una cadena vacía, si es una referencia cultural de todos los idiomas.The culture name in the format languagecode2-country/regioncode2, if the current CultureInfo is culture-dependent; or an empty string, if it's an invariant culture. languagecode2 es un código de dos letras en minúsculas derivado de ISO 639-1.languagecode2 is a lowercase two-letter code derived from ISO 639-1. Country/regioncode2 se deriva de ISO 3166 y normalmente consta de dos letras en mayúsculas o una etiqueta de idioma BCP-47.country/regioncode2 is derived from ISO 3166 and usually consists of two uppercase letters, or a BCP-47 language tag.
Ejemplos
En el ejemplo de código siguiente se muestran varias propiedades de las referencias culturales neutras.The following code example displays several properties of the neutral cultures.
Nota
En el ejemplo se muestran los nombres de referencia cultural zh-CHS y ZH-CHT anteriores con los identificadores de referencia cultural 0x0004 y 0x7C04, respectivamente.The example displays the older zh-CHS and zh-CHT culture names with the 0x0004 and 0x7C04 culture identifiers, respectively. Sin embargo, las aplicaciones de Windows Vista deben usar el nombre ZH-Hans en lugar de ZH-CHS y el nombre ZH-hant en lugar de ZH-CHT.However, your Windows Vista applications should use the zh-Hans name instead of zh-CHS and the zh-Hant name instead of zh-CHT. Los nombres ZH-Hans y ZH-hant representan el estándar actual y deben usarse a menos que tenga una razón para usar los nombres anteriores.The zh-Hans and zh-Hant names represent the current standard, and should be used unless you have a reason for using the older names.
using namespace System;
using namespace System::Globalization;
int main()
{
// Displays several properties of the neutral cultures.
Console::WriteLine( "CULTURE ISO ISO WIN DISPLAYNAME ENGLISHNAME" );
System::Collections::IEnumerator^ enum0 = CultureInfo::GetCultures( CultureTypes::NeutralCultures )->GetEnumerator();
while ( enum0->MoveNext() )
{
CultureInfo^ ci = safe_cast<CultureInfo^>(enum0->Current);
Console::Write( "{0,-7}", ci->Name );
Console::Write( " {0,-3}", ci->TwoLetterISOLanguageName );
Console::Write( " {0,-3}", ci->ThreeLetterISOLanguageName );
Console::Write( " {0,-3}", ci->ThreeLetterWindowsLanguageName );
Console::Write( " {0,-40}", ci->DisplayName );
Console::WriteLine( " {0,-40}", ci->EnglishName );
}
}
/*
This code produces the following output. This output has been cropped for brevity.
CULTURE ISO ISO WIN DISPLAYNAME ENGLISHNAME
ar ar ara ARA Arabic Arabic
bg bg bul BGR Bulgarian Bulgarian
ca ca cat CAT Catalan Catalan
zh-Hans zh zho CHS Chinese (Simplified) Chinese (Simplified)
cs cs ces CSY Czech Czech
da da dan DAN Danish Danish
de de deu DEU German German
el el ell ELL Greek Greek
en en eng ENU English English
es es spa ESP Spanish Spanish
fi fi fin FIN Finnish Finnish
zh zh zho CHS Chinese Chinese
zh-Hant zh zho CHT Chinese (Traditional) Chinese (Traditional)
zh-CHS zh zho CHS Chinese (Simplified) Legacy Chinese (Simplified) Legacy
zh-CHT zh zho CHT Chinese (Traditional) Legacy Chinese (Traditional) Legacy
*/
using System;
using System.Globalization;
public class SamplesCultureInfo
{
public static void Main()
{
// Displays several properties of the neutral cultures.
Console.WriteLine("CULTURE ISO ISO WIN DISPLAYNAME ENGLISHNAME");
foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.NeutralCultures))
{
Console.Write("{0,-7}", ci.Name);
Console.Write(" {0,-3}", ci.TwoLetterISOLanguageName);
Console.Write(" {0,-3}", ci.ThreeLetterISOLanguageName);
Console.Write(" {0,-3}", ci.ThreeLetterWindowsLanguageName);
Console.Write(" {0,-40}", ci.DisplayName);
Console.WriteLine(" {0,-40}", ci.EnglishName);
}
}
}
/*
This code produces the following output. This output has been cropped for brevity.
CULTURE ISO ISO WIN DISPLAYNAME ENGLISHNAME
ar ar ara ARA Arabic Arabic
bg bg bul BGR Bulgarian Bulgarian
ca ca cat CAT Catalan Catalan
zh-Hans zh zho CHS Chinese (Simplified) Chinese (Simplified)
cs cs ces CSY Czech Czech
da da dan DAN Danish Danish
de de deu DEU German German
el el ell ELL Greek Greek
en en eng ENU English English
es es spa ESP Spanish Spanish
fi fi fin FIN Finnish Finnish
zh zh zho CHS Chinese Chinese
zh-Hant zh zho CHT Chinese (Traditional) Chinese (Traditional)
zh-CHS zh zho CHS Chinese (Simplified) Legacy Chinese (Simplified) Legacy
zh-CHT zh zho CHT Chinese (Traditional) Legacy Chinese (Traditional) Legacy
*/
Imports System.Globalization
Module Module1
Public Sub Main()
' Displays several properties of the neutral cultures.
Console.WriteLine("CULTURE ISO ISO WIN DISPLAYNAME ENGLISHNAME")
Dim ci As CultureInfo
For Each ci In CultureInfo.GetCultures(CultureTypes.NeutralCultures)
Console.Write("{0,-7}", ci.Name)
Console.Write(" {0,-3}", ci.TwoLetterISOLanguageName)
Console.Write(" {0,-3}", ci.ThreeLetterISOLanguageName)
Console.Write(" {0,-3}", ci.ThreeLetterWindowsLanguageName)
Console.Write(" {0,-40}", ci.DisplayName)
Console.WriteLine(" {0,-40}", ci.EnglishName)
Next ci
End Sub
'This code produces the following output. This output has been cropped for brevity.
'
'CULTURE ISO ISO WIN DISPLAYNAME ENGLISHNAME
'ar ar ara ARA Arabic Arabic
'bg bg bul BGR Bulgarian Bulgarian
'ca ca cat CAT Catalan Catalan
'zh-Hans zh zho CHS Chinese (Simplified) Chinese (Simplified)
'cs cs ces CSY Czech Czech
'da da dan DAN Danish Danish
'de de deu DEU German German
'el el ell ELL Greek Greek
'en en eng ENU English English
'es es spa ESP Spanish Spanish
'fi fi fin FIN Finnish Finnish
'zh zh zho CHS Chinese Chinese
'zh-Hant zh zho CHT Chinese (Traditional) Chinese (Traditional)
'zh-CHS zh zho CHS Chinese (Simplified) Legacy Chinese (Simplified) Legacy
'zh-CHT zh zho CHT Chinese (Traditional) Legacy Chinese (Traditional) Legacy
End Module
Comentarios
Para obtener una lista de los nombres y los identificadores de referencias culturales predefinidos que la propiedad Name puede devolver en los sistemas Windows, vea la columna etiqueta de idioma en la lista de nombres de idioma o región admitidos por Windows.For a list of predefined culture names and identifiers that the Name property can return on Windows systems, see the Language tag column in the list of language/region names supported by Windows. Los nombres de las referencias culturales siguen el estándar definido por BCP 47.Culture names follow the standard defined by BCP 47. Además, a partir de Windows 10, name
puede ser cualquier etiqueta de idioma BCP-47 válida.In addition, starting with Windows 10, name
can be any valid BCP-47 language tag. Tenga en cuenta que los nombres de las referencias culturales están sujetos a cambios y que también pueden reflejar los nombres de las referencias culturales personalizadas.Note that culture names are subject to change, and that they also can reflect the names of custom cultures.
La propiedad CultureInfo.Name sigue los estándares de nomenclatura que se proporcionan en el tema de la clase CultureInfo.The CultureInfo.Name property follows the naming standards provided in the CultureInfo class topic. Devuelve la forma abreviada del nombre de la referencia cultural que excluye cualquier indicación de un criterio de ordenación alternativo.It returns the short form of the culture name that excludes any indication of an alternate sort order. Por ejemplo, si crea una instancia de un objeto CultureInfo mediante la cadena "de-DE_phoneb" para reflejar un criterio de ordenación alternativo, la propiedad Name devuelve "de-DE".For example, if you instantiate a CultureInfo object by using the string "de-DE_phoneb" to reflect an alternate sort order, the Name property returns "de-DE".
Para obtener el nombre completo de la referencia cultural, debe usar la propiedad DisplayName, EnglishNameo NativeName.To get the full name of the culture, you should use the DisplayName, EnglishName, or NativeName property.