FormatterConverter.Convert 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将值转换为给定的类型。
重载
Convert(Object, Type) |
将值转换为给定的 Type。 |
Convert(Object, TypeCode) |
将值转换为给定的 TypeCode。 |
Convert(Object, Type)
- Source:
- FormatterConverter.cs
- Source:
- FormatterConverter.cs
- Source:
- FormatterConverter.cs
将值转换为给定的 Type。
public:
virtual System::Object ^ Convert(System::Object ^ value, Type ^ type);
public object Convert (object value, Type type);
abstract member Convert : obj * Type -> obj
override this.Convert : obj * Type -> obj
Public Function Convert (value As Object, type As Type) As Object
参数
- value
- Object
要转换的对象。
返回
转换的 value
;或者,如果 type
参数为 null
,则为 null
。
实现
例外
value
参数为 null
。
适用于
Convert(Object, TypeCode)
- Source:
- FormatterConverter.cs
- Source:
- FormatterConverter.cs
- Source:
- FormatterConverter.cs
将值转换为给定的 TypeCode。
public:
virtual System::Object ^ Convert(System::Object ^ value, TypeCode typeCode);
public object Convert (object value, TypeCode typeCode);
abstract member Convert : obj * TypeCode -> obj
override this.Convert : obj * TypeCode -> obj
Public Function Convert (value As Object, typeCode As TypeCode) As Object
参数
- value
- Object
要转换的对象。
返回
转换的 value
;或者,如果 type
参数为 null
,则为 null
。
实现
例外
value
参数为 null
。