IEnumerable<T>.Concat(IEnumerable<T>) Method

Concatenates two sequences.

Namespace: Spring.Collections
public
 function Concat(const second: IEnumerable<T>): IEnumerable<T>; overload;

Parameters

second
Type: IEnumerable<T>

The sequence to concatenate to the first sequence.

Return Value

Type: IEnumerable<T>

An IEnumerable<T> that contains the concatenated elements of the two input sequences.