Data Frame Row<R, C>.Item Property
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Item[C] | Gets the value with the specified key. |
Item[Int32] | Gets the value at the specified index. |
Item(C)
Gets the value with the specified key.
public Object this[
C key
] { get; }
Parameters
- key C
- A key.
Return Value
ObjectThe value with key key in the row.
Item(Int32)
Gets the value at the specified index.
public Object this[
int index
] { get; }
Parameters
- index Int32
- The zero-based index of the column.