INumberBase<TSelf>.IsOddInteger(TSelf) 方法

定义

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

public:
 static bool IsOddInteger(TSelf value);
public static abstract bool IsOddInteger (TSelf value);
static member IsOddInteger : 'Self -> bool
Public Shared Function IsOddInteger (value As TSelf) As Boolean

参数

value
TSelf

要检查的值。

返回

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

注解

此方法正确处理浮点值,因此 3.0 将返回 true ,而 3.3 将返回 false

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

适用于