BigListTAddRange Method (IEnumerableT) |
Adds a collection of items to the end of BigList. The indices of all existing items
are unchanged. The last item in the added collection becomes the
last item in the BigList.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic void AddRange(
IEnumerable<T> collection
)
public:
void AddRange(
IEnumerable<T>^ collection
)
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
The collection of items to add.
Exceptions
RemarksThis method takes time O(M + log N), where M is the number of items in the
collection, and N is the size of the BigList.
See Also