| DequeTToArray Method |
Copies the
DequeT elements to a new array.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax Public Function ToArray As T()
public:
array<T>^ ToArray()
member ToArray : unit -> 'T[]
Return Value
Type:
TA new array containing elements copied from the
DequeT.
Remarks
The DequeT is not modified. The order of the elements in the new array is
the same as the order of the elements from the head of the DequeT to
its tail.
This method is an O(n) operation, where n is Count.
See Also