INumberBase<TSelf>.TryConvertFromSaturating<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 valore in un'istanza del tipo corrente, saturazione di tutti i valori che rientrano all'esterno dell'intervallo rappresentabile del tipo corrente.
protected:
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertFromSaturating(TOther value, [Runtime::InteropServices::Out] TSelf % result);
protected static abstract bool TryConvertFromSaturating<TOther> (TOther value, out TSelf result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertFromSaturating : 'Other * 'Self -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertFromSaturating(Of TOther As INumberBase(Of TOther)) (value As TOther, ByRef result As TSelf) As Boolean
Parametri di tipo
- TOther
Tipo di value
.
Parametri
- value
- TOther
Valore utilizzato per creare l'istanza di TSelf
.
- result
- TSelf
Quando questo metodo restituisce, contiene un'istanza di TSelf
convertita da value
.
Restituisce
false
se non è supportato; in caso TOther
contrario, true
.