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

IsEven() public static method

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