Constructs a new Range.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	startIndex As Integer, _
	endIndex As Integer _
)
C#
public Range (
	int startIndex,
	int endIndex
)
C++
public:
Range (
	int startIndex, 
	int endIndex
)

Parameters

startIndex (System.Int32)
The first index in the range.
endIndex (System.Int32)
The last index in the range.

Remarks

The Stride is equal to 1.