Convert.Coerce2(Object, TypeCode, Boolean) Method

Definition

Converts the specified value to the specified TypeCode, optionally allowing data loss.

This API supports the product infrastructure and is not intended to be used directly from your code.

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

Parameters

value
Object

The value to convert to a new type.

target
TypeCode

The type to convert value to.

truncationPermitted
Boolean

true to allow data loss; otherwise, false.

Returns

value converted to the target type.

Applies to