Get

public static T Get() ;

Fetch an instance from the pool.

The retrieved instance.

public static PooledObject<T> Get(out T value) ;

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

Parameter Name Description
value The retrieved instance.

PooledObject<T>

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