TypeConverter.ConvertFromString 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 텍스트를 개체로 변환합니다.
오버로드
ConvertFromString(ITypeDescriptorContext, CultureInfo, String) |
지정된 컨텍스트 및 문화권 정보를 사용하여, 지정된 텍스트를 개체로 변환합니다. |
ConvertFromString(String) |
지정된 텍스트를 개체로 변환합니다. |
ConvertFromString(ITypeDescriptorContext, String) |
지정된 컨텍스트를 사용하여, 지정된 텍스트를 개체로 변환합니다. |
ConvertFromString(ITypeDescriptorContext, CultureInfo, String)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
지정된 컨텍스트 및 문화권 정보를 사용하여, 지정된 텍스트를 개체로 변환합니다.
public:
System::Object ^ ConvertFromString(System::ComponentModel::ITypeDescriptorContext ^ context, System::Globalization::CultureInfo ^ culture, System::String ^ text);
public object ConvertFromString (System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, string text);
public object? ConvertFromString (System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, string text);
member this.ConvertFromString : System.ComponentModel.ITypeDescriptorContext * System.Globalization.CultureInfo * string -> obj
Public Function ConvertFromString (context As ITypeDescriptorContext, culture As CultureInfo, text As String) As Object
매개 변수
- context
- ITypeDescriptorContext
형식 컨텍스트를 제공하는 ITypeDescriptorContext입니다.
- culture
- CultureInfo
CultureInfo null
이 전달되면 현재 문화권이 가정됩니다.
반환
변환된 텍스트를 나타내는 Object입니다.
예외
변환할 수 없는 경우
설명
문자열을 적절한 개체로 변환할 수 없는 경우 예외가 발생합니다. 기본 구현에서는 항상 null
을 반환합니다.
이 변환기가 호출되는 환경에 대한 추가 정보를 추출하려면 context
매개 변수를 사용합니다. 이 매개 변수 수 null
항상 확인 합니다. 또한 컨텍스트 개체의 속성은 null
을 반환할 수도 있습니다.
추가 정보
적용 대상
ConvertFromString(String)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
지정된 텍스트를 개체로 변환합니다.
public:
System::Object ^ ConvertFromString(System::String ^ text);
public object ConvertFromString (string text);
public object? ConvertFromString (string text);
member this.ConvertFromString : string -> obj
Public Function ConvertFromString (text As String) As Object
매개 변수
- text
- String
변환할 개체의 텍스트 표현입니다.
반환
변환된 텍스트를 나타내는 Object입니다.
예외
문자열을 적절한 개체로 변환할 수 없는 경우
예제
이 함수의 예제는 클래스를 참조하세요 TypeConverter .
설명
기본 구현에서는 항상 null
을 반환합니다.
적용 대상
ConvertFromString(ITypeDescriptorContext, String)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
지정된 컨텍스트를 사용하여, 지정된 텍스트를 개체로 변환합니다.
public:
System::Object ^ ConvertFromString(System::ComponentModel::ITypeDescriptorContext ^ context, System::String ^ text);
public object ConvertFromString (System.ComponentModel.ITypeDescriptorContext context, string text);
public object? ConvertFromString (System.ComponentModel.ITypeDescriptorContext? context, string text);
member this.ConvertFromString : System.ComponentModel.ITypeDescriptorContext * string -> obj
Public Function ConvertFromString (context As ITypeDescriptorContext, text As String) As Object
매개 변수
- context
- ITypeDescriptorContext
형식 컨텍스트를 제공하는 ITypeDescriptorContext입니다.
반환
변환된 텍스트를 나타내는 Object입니다.
예외
변환할 수 없는 경우
설명
문자열을 적절한 개체로 변환할 수 없는 경우 예외가 발생합니다. 기본 구현에서는 항상 null
을 반환합니다.
이 변환기가 호출되는 환경에 대한 추가 정보를 추출하려면 context
매개 변수를 사용합니다. 이 매개 변수 수 null
항상 확인 합니다. 또한 컨텍스트 개체의 속성은 null
을 반환할 수도 있습니다.
추가 정보
적용 대상
.NET