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は 。

適用対象