Shared.NumericUtils.IsPowerOfTwo C# (CSharp) Method

IsPowerOfTwo() public static method

public static IsPowerOfTwo ( int number ) : bool
number int
return bool
        public static bool IsPowerOfTwo(int number)
        {
            return IsPowerOfTwo((long) number);
        }

Same methods

NumericUtils::IsPowerOfTwo ( long number ) : bool
NumericUtils