public double this[
int rowIndex,
int columnIndex
] { get; }
Public ReadOnly Default Property Item (
rowIndex As Integer,
columnIndex As Integer
) As Double
Get
public:
virtual property double default[int rowIndex, int columnIndex] {
double get (int rowIndex, int columnIndex) sealed;
}
abstract Item : float with get
override Item : float with get
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. |