BF2Statistics.Net.SocketAsyncEventArgsPool.SocketAsyncEventArgsPool C# (CSharp) Метод

SocketAsyncEventArgsPool() публичный Метод

Initializes the object pool with the specified size
public SocketAsyncEventArgsPool ( int capacity ) : System
capacity int Initial capacity of objects
Результат System
        public SocketAsyncEventArgsPool(int capacity)
        {
            this.pool = new Stack<SocketAsyncEventArgs>(capacity);
        }