INumberBase<TSelf>.TryConvertFromChecked<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, generando un'eccezione di overflow per tutti i valori che non rientrano nell'intervallo rappresentabile del tipo corrente.
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
Parametri di tipo
- TOther
Tipo di value
.
Parametri
- value
- TOther
Valore utilizzato per creare l'istanza di TSelf
.
- result
- TSelf
Quando termina, questo metodo contiene un'istanza di TSelf
convertita da value
.
Restituisce
false
se TOther
non è supportato; in caso contrario, true
.
Eccezioni
value
non è rappresentabile da TSelf
.