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.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic static IEnumerable<T> Concatenate<T>(
params IEnumerable<T>[] collections
)
public:
generic<typename T>
static IEnumerable<T>^ Concatenate(
... array<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:
IEnumerableTAn IEnumerable that enumerates all the items in each of the collections, in order.
See Also