TypeConverter.ConvertToInvariantString 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定值转换为区域性不变的字符串表示形式。
重载
ConvertToInvariantString(Object) |
将指定值转换为区域性不变的字符串表示形式。 |
ConvertToInvariantString(ITypeDescriptorContext, Object) |
使用指定的上下文将指定的值转换为区域性不变的字符串表示形式。 |
ConvertToInvariantString(Object)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
将指定值转换为区域性不变的字符串表示形式。
public:
System::String ^ ConvertToInvariantString(System::Object ^ value);
public string ConvertToInvariantString (object value);
public string? ConvertToInvariantString (object? value);
member this.ConvertToInvariantString : obj -> string
Public Function ConvertToInvariantString (value As Object) As String
参数
返回
String,表示已转换的值。
例外
无法执行转换。
注解
参数 context
可用于提取有关要从中调用此转换器的环境的其他信息。 此参数可能为 null
,因此总是需要检查。 同样,上下文对象的属性可以返回 null
。
根据值格式化程序实现,可以将返回的字符串传递回值格式化程序,以重新创建 对象的实例。
另请参阅
适用于
ConvertToInvariantString(ITypeDescriptorContext, Object)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
使用指定的上下文将指定的值转换为区域性不变的字符串表示形式。
public:
System::String ^ ConvertToInvariantString(System::ComponentModel::ITypeDescriptorContext ^ context, System::Object ^ value);
public string ConvertToInvariantString (System.ComponentModel.ITypeDescriptorContext context, object value);
public string? ConvertToInvariantString (System.ComponentModel.ITypeDescriptorContext? context, object? value);
member this.ConvertToInvariantString : System.ComponentModel.ITypeDescriptorContext * obj -> string
Public Function ConvertToInvariantString (context As ITypeDescriptorContext, value As Object) As String
参数
- context
- ITypeDescriptorContext
一个 ITypeDescriptorContext,用于提供格式上下文。
返回
String,表示已转换的值。
例外
无法执行转换。
注解
使用 context
参数提取有关调用此转换器的环境的附加信息。 此参数可以是 null
,因此请始终检查它。 同样,上下文对象的属性可以返回 null
。
根据值格式化程序实现,可以将返回的字符串传递回值格式化程序,以重新创建 对象的实例。