Click or drag to resize
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.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
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
ExceptionCondition
ArgumentNullExceptionfirst or second is null.
Remarks
This 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