Indexer to retrieve values.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public T this[ int row, int col ] { get; set; } |
| Visual Basic (Declaration) |
|---|
Public Default Property Item ( _ row As Integer, _ col As Integer _ ) As T |
| Visual C++ |
|---|
public: virtual property T default[int row, int col] { T get (int row, int col) sealed; void set (int row, int col, T value) sealed; } |
Parameters
- row
- Type: System..::.Int32
Row of the value to retrieve.
- col
- Type: System..::.Int32
Column of the value to retrieve.