SByte.INumberBase<SByte>.TryConvertToChecked<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 una instancia del tipo actual en otro tipo, iniciando una excepción de desbordamiento para los valores que se encuentran fuera del intervalo representable del tipo actual.
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool System.Numerics.INumberBase<System.SByte>.TryConvertToChecked(System::SByte value, [Runtime::InteropServices::Out] TOther % result) = System::Numerics::INumberBase<System::SByte>::TryConvertToChecked;
static bool INumberBase<sbyte>.TryConvertToChecked<TOther> (sbyte value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member System.Numerics.INumberBase<System.SByte>.TryConvertToChecked : sbyte * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Shared Function TryConvertToChecked(Of TOther As INumberBase(Of TOther)) (value As SByte, ByRef result As TOther) As Boolean Implements INumberBase(Of SByte).TryConvertToChecked
Parámetros de tipo
- TOther
Tipo al que value
se debe convertir.
Parámetros
- value
- SByte
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, true
es .