Indexer for returning the element at a specified row and column position.

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

Syntax

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

Parameters

row
Type: System..::.Int32
The row.
col
Type: System..::.Int32
The column.

See Also