INumberBase<TSelf>.TryConvertFromTruncating<TOther> 方法

定义

尝试将值转换为当前类型的实例,截断当前类型的可表示范围之外的任何值。

protected:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static bool TryConvertFromTruncating(TOther value, [Runtime::InteropServices::Out] TSelf % result);
protected static abstract bool TryConvertFromTruncating<TOther> (TOther value, out TSelf result) where TOther : System.Numerics.INumberBase<TOther>;
static member TryConvertFromTruncating : 'Other * 'Self -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
Protected Shared Function TryConvertFromTruncating(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

适用于