Click or drag to resize
DigitalRuneDeque<T>.ICollection<T>.Add Method

Namespace: DigitalRune.Collections
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
void ICollection<T>.Add(
	T item
)

Parameters

item
Type: T
The object to add to the ICollection<T>.

Implements

ICollection<T>.Add(T)
Remarks

If Count already equals the capacity, the capacity of the Deque< T> is increased by automatically reallocating the internal array, and the existing elements are copied to the new array before the new element is added.

If Count is less than the capacity of the internal array, this method is an O(1) operation. If the internal array needs to be reallocated to accommodate the new element, this method becomes an O(n) operation, where n is Count.

See Also