ArrayMethods.Append(T) Method

Tungsten Suite

ArrayMethodsAppendT Method

Appends the items to an array, resizing the array as necessary

Namespace:  W
Assembly:  Tungsten.ArrayMethods (in Tungsten.ArrayMethods.dll) Version: 2.0.0
Syntax
C#
public static T[] Append<T>(
	ref T[] source,
	T[] itemsToAdd
)

Parameters

source
Type: T
The source array
itemsToAdd
Type: T
The array of items to append to the source

Type Parameters

T
The data type

Return Value

Type: T
The modified source array
See Also