INumberBase<TSelf>.TryConvertFromTruncating<TOther> Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Intenta convertir un valor en una instancia del tipo actual, truncando los valores que se encuentran fuera del intervalo representable del tipo actual.
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
Parámetros de tipo
- TOther
Tipo de value
.
Parámetros
- value
- TOther
Valor que se usa para crear la instancia de TSelf
.
- result
- TSelf
Cuando este método devuelve , contiene una instancia de TSelf
convertida de value
.
Devoluciones
false
es si TOther
no se admite; de lo contrario, true
es .