Aqueduct.Extensions.Numeric.IsOdd C# (CSharp) Method

IsOdd() public static method

Determines whether the specified value is an odd number.
public static IsOdd ( this value ) : bool
value this The value.
return bool
        public static bool IsOdd(this int value)
        {
            return ((value & 1) == 1);
        }