AppendExtensionAppendT Method
Returns a sequence consisting of the head elements and the given tail element.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 3.4.0+b99a6a8cc504caf2d48372fe54a2f8116c59cd0c
public 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>
- head IEnumerableT
- All elements of the head. Must not be null.
- tail T
- Tail element of the new sequence.
- T
- Type of sequence
IEnumerableTA sequence consisting of the head elements and the given tail element.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).
This operator uses deferred execution and streams its results.