Click or drag to resize
BigListTAddRange Method (BigListT)
Adds a BigList of items to the end of BigList. The indices of all existing items are unchanged. The last item in list becomes the last 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 AddRange(
	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