Click or drag to resize

Slice(Int32, Int32) Constructor

Constructs a Slice instance with the specified starting index, total number of elements, and default stride of 1.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Slice(
	int start,
	int numElements
)

Parameters

start  Int32
The first data element.
numElements  Int32
The total number of data elements.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the start is negative or the number of elements is not positive.
See Also