INumberBase<TSelf>.TryConvertToSaturating<TOther> Método

Definición

Intenta convertir una instancia del tipo actual en otro tipo, saturando los valores que se encuentran fuera del intervalo representable del tipo actual.

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

Parámetros de tipo

TOther

Tipo al que value se debe convertir.

Parámetros

value
TSelf

Valor que se usa para crear la instancia de TOther.

result
TOther

Cuando este método devuelve , contiene una instancia de TOther convertida de value.

Devoluciones

false es si TOther no se admite; de lo contrario, truees .

Se aplica a