UInt128.INumberBase<UInt128>.TryConvertToTruncating<TOther> 方法

定义

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

generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static bool System.Numerics.INumberBase<System.UInt128>.TryConvertToTruncating(UInt128 value, [Runtime::InteropServices::Out] TOther % result) = System::Numerics::INumberBase<UInt128>::TryConvertToTruncating;
static bool INumberBase<UInt128>.TryConvertToTruncating<TOther> (UInt128 value, out TOther result) where TOther : System.Numerics.INumberBase<TOther>;
static member System.Numerics.INumberBase<System.UInt128>.TryConvertToTruncating : UInt128 * 'Other -> bool (requires 'Other :> System.Numerics.INumberBase<'Other>)
 Shared Function TryConvertToTruncating(Of TOther As INumberBase(Of TOther)) (value As UInt128, ByRef result As TOther) As Boolean Implements INumberBase(Of UInt128).TryConvertToTruncating

类型参数

TOther

应转换为的类型 value

参数

value
UInt128

用于创建 实例的值 TOther

result
TOther

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

返回

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

实现

适用于