INumberBase<TSelf>.CreateChecked<TOther>(TOther) Method

Definition

Creates an instance of the current type from a value, throwing an overflow exception for any values that fall outside the representable range of the current type.

public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static override TSelf CreateChecked(TOther value);
public static virtual TSelf CreateChecked<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;
static member CreateChecked : 'Other -> 'Self (requires 'Other :> System.Numerics.INumberBase<'Other>)
Public Shared Overrides Function CreateChecked(Of TOther As INumberBase(Of TOther)) (value As TOther) As TSelf

Type Parameters

TOther

The type of value.

Parameters

value
TOther

The value that's used to create the instance of TSelf.

Returns

TSelf

An instance of TSelf created from value.

Exceptions

TOther is not supported.

value is not representable by TSelf.

Applies to