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.1.0+0e154ef592f33ce0f6f3d534a9eedee273f0ce72
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