public ComplexMatrix this[
int rowIndex,
IndexCollection columnIndexes
] { get; }
Public ReadOnly Default Property Item (
rowIndex As Integer,
columnIndexes As IndexCollection
) As ComplexMatrix
Get
public:
virtual property ComplexMatrix^ default[int rowIndex, IndexCollection^ columnIndexes] {
ComplexMatrix^ get (int rowIndex, IndexCollection^ columnIndexes) sealed;
}
abstract Item : ComplexMatrix with get
override Item : ComplexMatrix with get
ArgumentNullException | columnIndexes is null. |
ArgumentOutOfRangeException | rowIndex is
less than zero. -or- rowIndex is greater than or equal to the number of rows of this instance. -or- columnIndexes contains an index which is greater than or equal to the number of columns of this instance. |