BigListTAddition Operator |
Concatenates two lists together to create a new list. Both lists being concatenated
are unchanged. The resulting list contains all the items in first, followed
by all the items in second.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic static BigList<T> operator +(
BigList<T> first,
BigList<T> second
)
public:
static BigList<T>^ operator +(
BigList<T>^ first,
BigList<T>^ second
)
Parameters
- first
- Type: X3Platform.CollectionsBigListT
The first list to concatenate. - second
- Type: X3Platform.CollectionsBigListT
The second list to concatenate.
Return Value
Type:
BigListT[Missing <returns> documentation for "M:X3Platform.Collections.BigList`1.op_Addition(X3Platform.Collections.BigList{`0},X3Platform.Collections.BigList{`0})"]
Exceptions
RemarksThis method takes, on average, constant time, regardless of the size
of either list. Although conceptually all of the items in both lists are
copied, storage is shared until changes are made to the
shared sections.
See Also