INumberBase<TSelf>.TryConvertFromSaturating<TOther> 方法

定义

尝试将值转换为当前类型的实例,使超出当前类型的可表示范围的任何值饱和。

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

类型参数

TOther

value 的类型。

参数

value
TOther

用于创建 实例的值 TSelf

result
TSelf

此方法返回时,包含从 value转换的 实例TSelf

返回

false 如果 TOther 不支持 ,则为 ;否则为 true

适用于