ArrayExtensions.Concat<T>
Extension Method in ArrayExtensions
Declaration
public static T[] Concat<T>(this T[] array, T[] elements)Description
Concats an array of elements to the end of the array.
Type Parameters
| T | The type of the array. |
Parameters
| array | The array to add the elements to. |
| elements | The elements to add. |
Returns
| T[] | A new array with the added elements. |