Click or drag to resize

ContainerHelperConcatenateV Method (ListV, ListV)

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.2
Syntax
C#
public static List<V> Concatenate<V>(
	List<V> a,
	List<V> b
)

Parameters

a
Type: System.Collections.GenericListV
A List, i.e. dynamic array.
b
Type: System.Collections.GenericListV
Another List, i.e. dynamic array of compatible type to a.

Type Parameters

V

Return Value

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