INumberBase<TSelf>.TryConvertFromChecked<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, iniciando una excepción de desbordamiento para los valores que se encuentran fuera del intervalo representable del tipo actual.
protected:
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertFromChecked(TOther value, [Runtime::InteropServices::Out] TSelf % result);
protected static abstract bool TryConvertFromChecked<TOther> (TOther value, out TSelf result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertFromChecked : 'Other * 'Self -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertFromChecked(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 .
Excepciones
value
no es representable por TSelf
.