Adds an item to the end of the queue.

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

Syntax

C#
public void Enqueue(
	T value
)
Visual Basic
Public Sub Enqueue ( 
	value As T
)
Visual C++
public:
void Enqueue(
	T value
)
F#
member Enqueue : 
        value : 'T -> unit 

Parameters

value
Type: T
The item to add to the queue. The value can be a null reference.

See Also