Drops the next n bits from the input. You should have called peekBits with a bigger or equal n before, to make sure that enough bits are in the bit buffer.
[Visual Basic]
Public Sub DropBits( _
   ByVal n As Integer _
)
[C#]
public void DropBits(
   int n
);
See Also
StreamManipulator Class | StreamManipulator Members | ICSharpCode.SharpZipLib.Zip.Compression.Streams Namespace