IEnumerable<T>.Concat Method

Definition

Concatenates two sequences.

Delphi
function Concat(const second: IEnumerable<T>): IEnumerable<T>

Parameters

second
IEnumerable<T>

The sequence to concatenate to this sequence.

Returns

IEnumerable<T>

A sequence that contains the concatenated elements of the two input sequences.

Exceptions

second is nil .