GSF.BitMath.CountBitsCleared C# (CSharp) Method

CountBitsCleared() public static method

Counts the number of bits that are not set
public static CountBitsCleared ( uint value ) : int
value uint
return int
        public static int CountBitsCleared(uint value)
        {
            return CountBitsSet(~value);
        }

Same methods

BitMath::CountBitsCleared ( ulong value ) : int