Gets and sets the index at the given position.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public int this[
	int position
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	position As Integer _
) As Integer
Visual C++
public:
property int default[int position] {
	int get (int position);
	void set (int position, int value);
}

Parameters

position
Type: System..::.Int32

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.IndexOutOfRangeExceptionThrown if the given position is less than zero or less than or equal to the length of this subset.

See Also