Click or drag to resize
BigListTAddRangeToFront Method (BigListT)
Adds a BigList of items to the front of BigList. The indices of all existing items are increased by the number of items in list. The first item in list becomes the first item in this list. The added list list is unchanged.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public void AddRangeToFront(
	BigList<T> list
)

Parameters

list
Type: X3Platform.CollectionsBigListT
The list of items to add.
Exceptions
ExceptionCondition
ArgumentNullExceptionlist is null.
Remarks
This method takes, on average, constant time, regardless of the size of either list. Although conceptually all of the items in list are copied, storage is shared between the two lists until changes are made to the shared sections.
See Also