System.Xml.Bits.ClearLeast C# (CSharp) Méthode

ClearLeast() public static méthode

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