System.IO.Compression.ByteBuffer.ByteBuffer C# (CSharp) Method

ByteBuffer() public method

Initializes a new instance of the ByteBuffer type.
public ByteBuffer ( int size )
size int The buffer size.
        public ByteBuffer(int size)
        {
            _buffer = new byte[size];
            _offset = 0;
        }