INumberBase<TSelf>.TryConvertFromTruncating<TOther> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试将值转换为当前类型的实例,截断当前类型的可表示范围之外的任何值。
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
。