Add the given collection to the dequeues head. To preserve the order in the collection, the entries are added in revers order.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public void EnqueueHeadRange(
	ICollection<T> C
)
Visual Basic (Declaration)
Public Sub EnqueueHeadRange ( _
	C As ICollection(Of T) _
)
Visual C++
public:
void EnqueueHeadRange(
	ICollection<T>^ C
)

Parameters

C
Type: System.Collections.Generic..::.ICollection<(Of <(T>)>)
The source collection

See Also