CultureInfoConverter 클래스
CultureInfo 개체와 여러 가지 다른 표현 사이를 변환하는 형식 변환기를 제공합니다.
네임스페이스: System.ComponentModel
어셈블리: System(system.dll)
구문
‘선언
Public Class CultureInfoConverter
Inherits TypeConverter
‘사용 방법
Dim instance As CultureInfoConverter
public class CultureInfoConverter : TypeConverter
public ref class CultureInfoConverter : public TypeConverter
public class CultureInfoConverter extends TypeConverter
public class CultureInfoConverter extends TypeConverter
설명
이 변환기에서는 CultureInfo 개체와 문자열 사이의 변환만 수행할 수 있습니다.
형식 변환기에 대한 자세한 내용은 TypeConverter 기본 클래스 및 방법: 형식 변환기 구현을 참조하십시오.
참고
CultureInfoConverter 클래스의 인스턴스를 만들지 마십시오. 대신 TypeDescriptor 클래스의 GetConverter 메서드를 호출합니다. 자세한 내용은 TypeConverter 기본 클래스의 예제를 참조하십시오.
이 클래스에 적용되는 HostProtectionAttribute 특성의 Resources 속성 값은 SharedState입니다. HostProtectionAttribute는 대개 아이콘을 두 번 클릭하거나, 명령을 입력하거나, 브라우저에서 URL을 입력하여 시작되는 데스크톱 응용 프로그램에 영향을 미치지 않습니다. 자세한 내용은 HostProtectionAttribute 클래스나 SQL Server 프로그래밍 및 호스트 보호 특성을 참조하십시오.
예제
다음 코드 예제에서는 CultureInfo 형식의 변수를 문자열로 변환하고 그 반대로도 변환합니다. 먼저 그리스어 culture("el"로 표시함)를 사용하여 CultureInfo 변수를 생성하고 이 변수를 문자열 "Greek"로 변환합니다. 그런 다음 문자열 "Russian"을 CultureInfo 표현 "ru"로 변환합니다.
' The sample first constructs a CultureInfo variable using the Greek culture - 'el'.
Dim myCulture As New System.Globalization.CultureInfo("el")
Dim myCString As String = "Russian"
Console.WriteLine(TypeDescriptor.GetConverter(myCulture).ConvertTo(myCulture, GetType(String)))
' The following line will output 'ru' based on the string being converted.
Console.WriteLine(TypeDescriptor.GetConverter(myCulture).ConvertFrom(myCString))
// The sample first constructs a CultureInfo variable using the Greek culture - 'el'.
System.Globalization.CultureInfo myCulture= new System.Globalization.CultureInfo("el");
string myCString="Russian";
Console.WriteLine(TypeDescriptor.GetConverter(myCulture).ConvertTo(myCulture, typeof(string)));
// The following line will output 'ru' based on the string being converted.
Console.WriteLine(TypeDescriptor.GetConverter(myCulture).ConvertFrom(myCString));
// The sample first constructs a CultureInfo variable using the Greek culture - 'el'.
System::Globalization::CultureInfo^ myCulture = gcnew System::Globalization::CultureInfo( "el" );
String^ myCString = "Russian";
Console::WriteLine( TypeDescriptor::GetConverter( myCulture )->ConvertTo( myCulture, String::typeid ) );
// The following line will output 'ru' based on the string being converted.
Console::WriteLine( TypeDescriptor::GetConverter( myCulture )->ConvertFrom( myCString ) );
// The sample first constructs a CultureInfo variable using the
// Greek culture - 'el'.
System.Globalization.CultureInfo myCulture = new System.Globalization.
CultureInfo("el");
String myCString = "Russian";
Console.WriteLine(TypeDescriptor.GetConverter(myCulture).
ConvertTo(myCulture, String.class.ToType()));
// The following line will output 'ru' based on the
// string being converted.
Console.WriteLine(TypeDescriptor.GetConverter(myCulture).
ConvertFrom(myCString));
상속 계층 구조
System.Object
System.ComponentModel.TypeConverter
System.ComponentModel.CultureInfoConverter
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원