Click or drag to resize

MoreEnumerableAppendT Method

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

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.3.1+b77df70598ab84c28cd43dcf74594024b6d575e1
Syntax
public static IEnumerable<T> Append<T>(
	this IEnumerable<T> head,
	T tail
)

Parameters

head
Type: System.Collections.GenericIEnumerableT
All elements of the head. Must not be null.
tail
Type: T
Tail element of the new sequence.

Type Parameters

T
Type of sequence

Return Value

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
This operator uses deferred execution and streams its results.
See Also