Convert.Coerce2(Object, TypeCode, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定值转换为指定的 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
。
返回
转换为 value
类型的 target
。