Click or drag to resize

ContainerHelperConcatenateV(ListV, ListV) Method

Creates a new dynamic array and appends all values first from a and then from b.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static List<V> Concatenate<V>(
	List<V> a,
	List<V> b
)

Parameters

a  ListV
A List, i.e. dynamic array.
b  ListV
Another List, i.e. dynamic array of compatible type to a.

Type Parameters

V

Return Value

ListV
A new List, i.e. dynamic array, containing a concatenation of the parameter arrays.
See Also