MoreEnumerable.Append<T> Method |
Returns a sequence consisting of the head elements and the given tail element.
Namespace:
MoreLinq
Assembly:
MoreLinq (in MoreLinq.dll) Version: 3.2.0+5205ea241d72b079436060d330cd5c2eae7cdcdf
Syntaxpublic static IEnumerable<T> Append<T>(
this IEnumerable<T> head,
T tail
)
<ExtensionAttribute>
Public Shared Function Append(Of T) (
head As IEnumerable(Of T),
tail As T
) As IEnumerable(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ Append(
IEnumerable<T>^ head,
T tail
)
[<ExtensionAttribute>]
static member Append :
head : IEnumerable<'T> *
tail : 'T -> IEnumerable<'T>
Parameters
- head
- Type: System.Collections.Generic.IEnumerable<T>
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:
IEnumerable<T>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
IEnumerable<T>. 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).
RemarksThis operator uses deferred execution and streams its results.
See Also