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

ClearLeast() public static method

Clear the least significant bit that is set and return the result.
public static ClearLeast ( uint num ) : uint
num uint
return uint
        public static uint ClearLeast(uint num) {
            return num & (num - 1);
        }