UInt128.IsEvenInteger(UInt128) 方法

定义

确定值是否表示偶数整数。

public:
 static bool IsEvenInteger(UInt128 value) = System::Numerics::INumberBase<UInt128>::IsEvenInteger;
public static bool IsEvenInteger (UInt128 value);
static member IsEvenInteger : UInt128 -> bool
Public Shared Function IsEvenInteger (value As UInt128) As Boolean

参数

value
UInt128

返回

Boolean

true 如果 value 为偶数整数,则为 ;否则为 false

实现

注解

此方法正确处理浮点值,因此 2.0 返回 true2.2 返回 false

返回值 false 并不表示 IsOddInteger(TSelf) 将返回 true。 例如, 3.3具有小数部分的数字不是偶数或奇数。

适用于