IntPtr.INumberBase<IntPtr>.TryConvertToTruncating<TOther> Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Tenta di convertire un'istanza del tipo corrente in un altro tipo, troncando tutti i valori che non rientrano nell'intervallo rappresentabile del tipo corrente.
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool System.Numerics.INumberBase<nint>.TryConvertToTruncating(IntPtr value, [Runtime::InteropServices::Out] TOther % result) = System::Numerics::INumberBase<IntPtr>::TryConvertToTruncating;
static bool INumberBase<IntPtr>.TryConvertToTruncating<TOther> (IntPtr value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member System.Numerics.INumberBase<nint>.TryConvertToTruncating : nativeint * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Shared Function TryConvertToTruncating(Of TOther As INumberBase(Of TOther)) (value As IntPtr, ByRef result As TOther) As Boolean Implements INumberBase(Of IntPtr).TryConvertToTruncating
Parametri di tipo
- TOther
Tipo in cui value
deve essere convertito.
Parametri
- value
-
IntPtr
nativeint
Valore utilizzato per creare l'istanza di TOther
.
- result
- TOther
Quando termina, questo metodo contiene un'istanza di TOther
convertita da value
.
Restituisce
false
se TOther
non è supportato; in caso contrario, true
.