Get
Get()
public static T Get() ;
Description
Fetch an instance from the pool.
Returns
The retrieved instance.
Get(out T)
Description
Fetch an instance from the pool and return a PooledObject<T>.
Parameters
Parameter Name | Description |
---|---|
value | The retrieved instance. |
Returns
Remarks
By using PooledObject<T> in the using statement, it will be returned to the pool when it goes out of scope.