IEnumerableExtensionsAppendT Method (IEnumerableT, IEnumerableT) |
Yield a concatenation of the two Enumerable lists
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static IEnumerable<T> Append<T>(
this IEnumerable<T> enumerable,
params IEnumerable<T>[] enumerables
)
<ExtensionAttribute>
Public Shared Function Append(Of T) (
enumerable As IEnumerable(Of T),
ParamArray enumerables As IEnumerable(Of T)()
) As IEnumerable(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ Append(
IEnumerable<T>^ enumerable,
... array<IEnumerable<T>^>^ enumerables
)
[<ExtensionAttribute>]
static member Append :
enumerable : IEnumerable<'T> *
enumerables : IEnumerable<'T>[] -> IEnumerable<'T>
Parameters
- enumerable
- Type: System.Collections.GenericIEnumerableT
[Missing <param name="enumerable"/> documentation for "M:Bio.Util.IEnumerableExtensions.Append``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}[])"]
- enumerables
- Type: System.Collections.GenericIEnumerableT
[Missing <param name="enumerables"/> documentation for "M:Bio.Util.IEnumerableExtensions.Append``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}[])"]
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Bio.Util.IEnumerableExtensions.Append``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}[])"]
Return Value
Type:
IEnumerableT[Missing <returns> documentation for "M:Bio.Util.IEnumerableExtensions.Append``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0}[])"]
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).
See Also