Gets and sets the value at the given index.

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

Syntax

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

Parameters

index
Type: System..::.Int32
The index of the value.

Return Value

The value.

See Also