ISequence<T>.Concat Method A Sandcastle Documented Class Library
Returns a copy of this sequence concatenated with otherSequence.

Namespace: Sequences
Assembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
ISequence<T> Concat(
	Func<IEnumerable<T>> otherSequence
)

Parameters

otherSequence
Type: System.Func<IEnumerable<T>>
The sequence with which to concatenate this sequence; will be lazily evaluated.

Return Value

Type: ISequence<T>
A copy of this sequence concatenated with otherSequence.
See Also