Constructs a Range instance with the specified start and end positions.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public Range(
	Position position1,
	Position position2
)
Visual Basic (Declaration)
Public Sub New ( _
	position1 As Position, _
	position2 As Position _
)
Visual C++
public:
Range(
	Position position1, 
	Position position2
)

Parameters

position1
Type: CenterSpace.NMath.Core..::.Position
A value from the Position enumeration indicating the start of the data.
position2
Type: CenterSpace.NMath.Core..::.Position
A value from the Position enumeration indicating the end of the data.

See Also