Complex.IsEvenInteger(Complex) 方法

定义

确定值是否表示偶数。

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

参数

value
Complex

要检查的值。

返回

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

实现

注解

此方法正确处理浮点值,因此 2.0 返回 true,而 2.2 返回 false

false 的返回值并不意味着 IsOddInteger(TSelf) 将返回 true。 具有小数部分的数字(例如,3.3)甚至不是或奇数。

适用于