zxingwp7.common.BitArray.setBulk C# (CSharp) Méthode

setBulk() public méthode

Sets a block of 32 bits, starting at bit i.
public setBulk ( int i, int newBits ) : void
i int first bit to set ///
newBits int the new value of the next 32 bits. Note again that the least-significant bit /// corresponds to bit i, the next-least-significant to i+1, and so on. ///
Résultat void
        public void setBulk(int i, int newBits)
        {
            bits[i >> 5] = newBits;
        }