UIntPtr.INumberBase<UIntPtr>.TryConvertToSaturating<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, saturando los valores que se encuentran fuera del intervalo que se puede representar del tipo actual.
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool System.Numerics.INumberBase<nuint>.TryConvertToSaturating(UIntPtr value, [Runtime::InteropServices::Out] TOther % result) = System::Numerics::INumberBase<UIntPtr>::TryConvertToSaturating;
static bool INumberBase<UIntPtr>.TryConvertToSaturating<TOther> (UIntPtr value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member System.Numerics.INumberBase<nuint>.TryConvertToSaturating : unativeint * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Shared Function TryConvertToSaturating(Of TOther As INumberBase(Of TOther)) (value As UIntPtr, ByRef result As TOther) As Boolean Implements INumberBase(Of UIntPtr).TryConvertToSaturating
Parámetros de tipo
- TOther
Tipo al que value
se debe convertir.
Parámetros
- value
-
UIntPtr
unativeint
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 .