double ITabularCollection<double, DoubleMatrix>.this[
int rowIndex,
int columnIndex
] { get; set; }
Private Property Item (
rowIndex As Integer,
columnIndex As Integer
) As Double Implements ITabularCollection(Of Double, DoubleMatrix).Item
Get
Set
private:
virtual property double Item[int rowIndex, int columnIndex] {
double get (int rowIndex, int columnIndex) sealed = ITabularCollection<double, DoubleMatrix^>::Item::get;
void set (int rowIndex, int columnIndex, double value) sealed = ITabularCollection<double, DoubleMatrix^>::Item::set;
}
private abstract Item : float with get, set
private override Item : float with get, set
ArgumentOutOfRangeException | rowIndex is less than zero. -or- rowIndex is equal to or greater than NumberOfRows. -or- columnIndex is less than zero. -or- columnIndex is equal to or greater than NumberOfColumns. |