Add item to the pool.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public bool Return(
	T item
)
Visual Basic
Public Function Return ( 
	item As T
) As Boolean
Visual C++
public:
bool Return(
	T item
)
F#
member Return : 
        item : 'T -> bool 

Parameters

item
Type: T
Item to add

Return Value

Type: Boolean
True if added, False otherwise

See Also