Complex ITabularCollection<Complex, ComplexMatrix>.this[
int rowIndex,
int columnIndex
] { get; set; }
Private Property Item (
rowIndex As Integer,
columnIndex As Integer
) As Complex Implements ITabularCollection(Of Complex, ComplexMatrix).Item
Get
Set
private:
virtual property Complex Item[int rowIndex, int columnIndex] {
Complex get (int rowIndex, int columnIndex) sealed = ITabularCollection<Complex, ComplexMatrix^>::Item::get;
void set (int rowIndex, int columnIndex, Complex value) sealed = ITabularCollection<Complex, ComplexMatrix^>::Item::set;
}
private abstract Item : Complex with get, set
private override Item : Complex 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. |