INumberBase<TSelf>.TryConvertToSaturating<TOther> 方法

定義

嘗試將目前型別的實例轉換成另一個類型,使任何落在目前類型可表示範圍以外的值飽和。

protected:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertToSaturating(TSelf value, [Runtime::InteropServices::Out] TOther % result);
protected static abstract bool TryConvertToSaturating<TOther> (TSelf value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertToSaturating : 'Self * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertToSaturating(Of TOther As INumberBase(Of TOther)) (value As TSelf, ByRef result As TOther) As Boolean

類型參數

TOther

應該轉換的目標 value 型別。

參數

value
TSelf

用來建立 實例的值 TOther

result
TOther

當這個方法傳回時,包含從 value轉換的 TOther 實例。

傳回

false 如果 TOther 不支援,則為 ,否則為 true

適用於