UInt128.CreateSaturating<TOther>(TOther) 方法

定义

从值创建当前类型的实例,使属于当前类型的可表示范围之外的任何值饱和。

public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static UInt128 CreateSaturating(TOther value) = System::Numerics::INumberBase<UInt128>::CreateSaturating;
public static UInt128 CreateSaturating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;
static member CreateSaturating : 'Other -> UInt128 (requires 'Other :> System.Numerics.INumberBase<'Other>)
Public Shared Function CreateSaturating(Of TOther As INumberBase(Of TOther)) (value As TOther) As UInt128

类型参数

TOther

value的类型。

参数

value
TOther

用于创建 TSelf实例的值。

返回

value创建的 TSelf 实例,如果 value 超出可表示的 TSelf范围,则饱和。

实现

适用于