System.IO.BitSplitter.AlignToByte C# (CSharp) Method

AlignToByte() public method

Move to the next byte edge (no action if already on one -- moves between 0 and 7 bits)
public AlignToByte ( ) : void
return void
        public void AlignToByte()
        {
            offset += 8 - BitOffset;
        }