Click or drag to resize

ContainerHelperSubarrayV Method (ListV, Int32, Int32)

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.2
Syntax
C#
public static List<V> Subarray<V>(
	List<V> a,
	int start,
	int length
)

Parameters

a
Type: System.Collections.GenericListV
A List, i.e. dynamic array.
start
Type: SystemInt32
A start position in the dynamic array.
length
Type: SystemInt32
The number of elements to copy from start on.

Type Parameters

V

Return Value

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