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

Definición

Intenta convertir una instancia del tipo actual en otro tipo, truncando los valores que se encuentran fuera del intervalo que se puede representar del tipo actual.

protected:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertToTruncating(TSelf value, [Runtime::InteropServices::Out] TOther % result);
protected static abstract bool TryConvertToTruncating<TOther> (TSelf value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertToTruncating : 'Self * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertToTruncating(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