Convert.Coerce2(Object, TypeCode, Boolean) 方法

定义

将指定值转换为指定的 TypeCode,并允许数据丢失(可选)。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 static System::Object ^ Coerce2(System::Object ^ value, TypeCode target, bool truncationPermitted);
public static object Coerce2 (object value, TypeCode target, bool truncationPermitted);
static member Coerce2 : obj * TypeCode * bool -> obj
Public Shared Function Coerce2 (value As Object, target As TypeCode, truncationPermitted As Boolean) As Object

参数

value
Object

要转换为新类型的值。

target
TypeCode

value 所要转换到的类型。

truncationPermitted
Boolean

如果允许数据丢失,则为 true;否则为 false

返回

Object

转换为 value 类型的 target

适用于