MoreEnumerableAppendT Method

Returns a sequence consisting of the head elements and the given tail element.

Definition

Namespace: MoreLinq
Assembly: MoreLinq (in MoreLinq.dll) Version: 4.4.0+6d97c3b1d482f98300f4446df14742b0e3fafbec
C#
public static IEnumerable<T> Append<T>(
	IEnumerable<T> head,
	T tail
)

Parameters

head  IEnumerableT
All elements of the head. Must not be null.
tail  T
Tail element of the new sequence.

Type Parameters

T
Type of sequence

Return Value

IEnumerableT
A sequence consisting of the head elements and the given tail element.

Remarks

This operator uses deferred execution and streams its results.

See Also