Slice Constructor

Constructs a new slice.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Slice(
	int length,
	int start,
	int stride = 1
)

Parameters

length  Int32
The length of the slice.
start  Int32
The index of the first element in the slice.
stride  Int32  (Optional)
The number of elements between successive indexes in the slice.

See Also