Click or drag to resize
MoreEnumerableConcatT Method (T, IEnumerableT)
Returns a sequence consisting of the head element and the given tail elements.

Namespace: MoreLinq
Assembly: MoreLinq (in MoreLinq.dll) Version: 2.0.0
Syntax
public static IEnumerable<T> Concat<T>(
	this T head,
	IEnumerable<T> tail
)

Parameters

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

Type Parameters

T
Type of sequence

Return Value

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . 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