GeneralUtilities.ExtendArray Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ExtendArray<T>(IEnumerable<T>, IEnumerable<T>) | |
ExtendArray<T>(IEnumerable<T>, T) |
ExtendArray<T>(IEnumerable<T>, IEnumerable<T>)
public static T[] ExtendArray<T> (System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IEnumerable<T> items);
static member ExtendArray : seq<'T> * seq<'T> -> 'T[]
Public Function ExtendArray(Of T) (collection As IEnumerable(Of T), items As IEnumerable(Of T)) As T()
Type Parameters
- T
Parameters
- collection
- IEnumerable<T>
- items
- IEnumerable<T>
Returns
T[]
Applies to
ExtendArray<T>(IEnumerable<T>, T)
public static T[] ExtendArray<T> (System.Collections.Generic.IEnumerable<T> collection, T item);
static member ExtendArray : seq<'T> * 'T -> 'T[]
Public Function ExtendArray(Of T) (collection As IEnumerable(Of T), item As T) As T()
Type Parameters
- T
Parameters
- collection
- IEnumerable<T>
- item
- T
Returns
T[]