Click or drag to resize
AlgorithmsConcatenateT Method
Concatenates all the items from several collections. The collections need not be of the same type, but must have the same item type.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public static IEnumerable<T> Concatenate<T>(
	params IEnumerable<T>[] collections
)

Parameters

collections
Type: System.Collections.GenericIEnumerableT
The set of collections to concatenate. In many languages, this parameter can be specified as several individual parameters.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:X3Platform.Collections.Algorithms.Concatenate``1(System.Collections.Generic.IEnumerable{``0}[])"]

Return Value

Type: IEnumerableT
An IEnumerable that enumerates all the items in each of the collections, in order.
See Also