System.Xml.Bits.MoreThanOne C# (CSharp) Method

MoreThanOne() public static method

Returns true if the unsigned integer has more than one bit set.
public static MoreThanOne ( uint num ) : bool
num uint
return bool
        public static bool MoreThanOne(uint num) {
            return (num & (num - 1)) != 0;
        }