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.0.0+092a40d82a1b280568ffa006d9a210bdec0792cd
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