Click or drag to resize
BigListTAddToFront Method
Adds an item to the beginning of the BigList. The indices of all existing items in the Deque are increased by one, and the new item has index zero.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public void AddToFront(
	T item
)

Parameters

item
Type: T
The item to add.
Remarks
Adding an item takes, on average, constant time.
See Also