|  | CompressedSparseRowTItem Property | 
            Indexer to retrieve values.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic T this[
	int row,
	int col
] { get; set; }Public Default Property Item ( 
	row As Integer,
	col As Integer
) As T
	Get
	Set
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;
}abstract Item : 'T with get, set
override Item : 'T with get, set
Parameters
- row  Int32
- Row of the value to retrieve.
- col  Int32
- Column of the value to retrieve.
Return Value
TThe value at the given row and column.
Implements
ISparseMatrixStorageTItemInt32, Int32 See Also
See Also