Click or drag to resize

appendAppendT Method (T, IEnumerableT)

Resizes an array and adds toAdd to its end.

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static void Append<T>(
	ref T[] this,
	IEnumerable<T> toAdd
)

Parameters

this
Type: T
The array to append to.
toAdd
Type: System.Collections.GenericIEnumerableT
The IEnumerableT to copy to the this.

Type Parameters

T
The type of this.
Remarks
See Also