System.IO.BitSplitter.GetNext C# (CSharp) Méthode

GetNext() protected méthode

Get an unshifted array of bits packed in bytes. Advances position counter.
protected GetNext ( int l ) : byte[]
l int
Résultat byte[]
        protected byte[] GetNext(int l)
        {
            byte[] m = Mask(BitOffset, l);
            for (int i = 0; i < m.Length; i++) {
                m[i] = (byte)(m[i] & src[ByteOffset + i]);
            }
            offset += l;
            return m;
        }