 | 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.libGrAssembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntaxpublic 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
ListVA new List, i.e. dynamic array, containing a concatenation of the parameter arrays.
See Also