operator + method

List<int> operator + (List<int> other)
inherited

Returns the concatenation of this list and other.

If other is also a typed-data integer list, the returned list will be a type-data integer list capable of containing all the elements of this list and of other. Otherwise the returned list will be a normal growable List<int>.

Implementation

List<int> operator +(List<int> other);