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.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic void AddRange(
BigList<T> list
)
public:
void AddRange(
BigList<T>^ list
)
Parameters
- list
- Type: X3Platform.CollectionsBigListT
The list of items to add.
Exceptions
RemarksThis 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