Adds an object at the specified index.

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,
	int index
)
Visual Basic
Public Sub Enqueue ( 
	value As T,
	index As Integer
)
Visual C++
public:
void Enqueue(
	T value, 
	int index
)
F#
member Enqueue : 
        value : 'T * 
        index : int -> unit 

Parameters

value
Type: T
The item to add to the queue. The value can be a null reference.
index
Type: System..::..Int32
The index of the newly added item

See Also