IntPtr.CreateTruncating<TOther>(TOther) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从值创建当前类型的实例,截断属于当前类型的可表示范围之外的任何值。
public:
generic <typename TOther>
where TOther : System::Numerics::INumberBase<TOther> static IntPtr CreateTruncating(TOther value) = System::Numerics::INumberBase<IntPtr>::CreateTruncating;
public static IntPtr CreateTruncating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;
static member CreateTruncating : 'Other -> nativeint (requires 'Other :> System.Numerics.INumberBase<'Other>)
Public Shared Function CreateTruncating(Of TOther As INumberBase(Of TOther)) (value As TOther) As IntPtr
类型参数
- TOther
value
的类型。
参数
- value
- TOther
用于创建 TSelf
实例的值。
返回
IntPtr
nativeint
从 value
创建的 TSelf
实例,如果 value
超出可表示的 TSelf
范围,则截断。