ReadOnlyComplexMatrixIListComplexItem Property
Gets the element at the specified index.
A
NotSupportedException occurs if you try to set the item
at the specified index.
Namespace: Novacta.AnalyticsAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
Complex IList<Complex>.this[
int index
] { get; set; }
Private Property Item (
index As Integer
) As Complex Implements IList(Of Complex).Item
Get
Set
private:
virtual property Complex Item[int index] {
Complex get (int index) sealed = IList<Complex>::Item::get;
void set (int index, Complex value) sealed = IList<Complex>::Item::set;
}
private abstract Item : Complex with get, set
private override Item : Complex with get, set
- index Int32
- The zero-based index of the element to get.
ComplexThe element at the specified index.
IListTItemInt32