IEnumerable<T>.Concat(IEnumerable<T>) Method
Concatenates two sequences.
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.