Method GetTable
GetTable<T>(int, string)
Interprets the specified value as a table name, and returns the associated table.
public TwoDimArray<T>? GetTable<T>(int rowIndex, string columnName) where T : class, ITwoDimArrayEntry, new()
Parameters
rowIndexintThe index of the row to query.
columnNamestringThe name/label of the column to query.
Returns
- TwoDimArray<T>
The associated value, otherwise null.
Type Parameters
TThe type of table entry.
GetTable<T>(int, int)
Interprets the specified value as a table name, and returns the associated table.
public TwoDimArray<T>? GetTable<T>(int rowIndex, int columnIndex) where T : class, ITwoDimArrayEntry, new()
Parameters
Returns
- TwoDimArray<T>
The associated value, otherwise null.
Type Parameters
TThe type of table entry.