Gets the index at the ith position.

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

Syntax

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

Parameters

i
Type: System..::.Int32
Index position.

Return Value

Index at the ith position

See Also