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 aPooledObject<T>.

Parameter Name Description
value 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.