System.IO.ByteBufferPool.ByteBufferPool C# (CSharp) Méthode

ByteBufferPool() public méthode

public ByteBufferPool ( int maxBuffers, int bufferSize ) : System
maxBuffers int
bufferSize int
Résultat System
        public ByteBufferPool(int maxBuffers, int bufferSize)
        {
            _max = maxBuffers;        
            _bufferPool = new byte[_max][];
            _bufferSize = bufferSize;

            _current = -1;
            _last = -1;
        } // ByteBufferPool