Get

public T Get() ;

Fetch an instance from the pool.

The retrieved instance.

public PooledObject<T> Get(out T v) ;

Fetch an instance from the pool and return aPooledObject<T>.

Parameter Name Description
v The retrieved instance.

PooledObject<T>

By usingPooledObject<T>in the using statement, it will be returned to the pool when it goes out of scope.