ReadOnlyDoubleMatrixIListDoubleItem 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
double IList<double>.this[
int index
] { get; set; }
Private Property Item (
index As Integer
) As Double Implements IList(Of Double).Item
Get
Set
private:
virtual property double Item[int index] {
double get (int index) sealed = IList<double>::Item::get;
void set (int index, double value) sealed = IList<double>::Item::set;
}
private abstract Item : float with get, set
private override Item : float with get, set
- index Int32
- The zero-based index of the element to get.
DoubleThe element at the specified index.
IListTItemInt32