Click or drag to resize

ContainerHelperSubarrayV(ListV, Int32, Int32) Method

Creates a new dynamic array with length values copied from a from index start on.

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

Parameters

a  ListV
A List, i.e. dynamic array.
start  Int32
A start position in the dynamic array.
length  Int32
The number of elements to copy from start on.

Type Parameters

V

Return Value

ListV
A new List, i.e. dynamic array, containing the length first values from start on.
See Also