[This is preliminary documentation and is subject to change.]

Adds an object to the end of the queue.

Namespace:  Phoenix.Collections
Assembly:  PhoenixShared (in PhoenixShared.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public virtual void Enqueue(
	T item
)
Public Overridable Sub Enqueue ( _
	item As T _
)
public:
virtual void Enqueue(
	T item
)

Parameters

item
T
The object to add to the queue. The value can be null for reference types.

See Also