System.IO.Compression.ByteBuffer.ByteBuffer C# (CSharp) Méthode

ByteBuffer() public méthode

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;
        }