INumberBase<TSelf>.TryConvertFromTruncating<TOther> Method

Definition

Tries to convert a value to an instance of the the current type, truncating any values that fall outside the representable range of the current type.

protected:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertFromTruncating(TOther value, [Runtime::InteropServices::Out] TSelf % result);
protected static abstract bool TryConvertFromTruncating<TOther> (TOther value, out TSelf result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertFromTruncating : 'Other * 'Self -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertFromTruncating(Of TOther As INumberBase(Of TOther)) (value As TOther, ByRef result As TSelf) As Boolean

Type Parameters

TOther

The type of value.

Parameters

value
TOther

The value which is used to create the instance of TSelf.

result
TSelf

When this method returns, contains an instance of TSelf converted from value.

Returns

false if TOther is not supported; otherwise, true.

Applies to