DataFrameRow<R, C>.Item Property

Definition

Namespace: Extreme.DataAnalysis
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.

DataFrameRow<R, C>.Item(C)

Gets the value with the specified key.
C#
public Object this[
	C key
] { get; }

Parameters

key  C
A key.

Return Value

Object
The value with key key in the row.

DataFrameRow<R, C>.Item(Int32)

Gets the value at the specified index.
C#
public Object this[
	int index
] { get; }

Parameters

index  Int32
The zero-based index of the column.

Property Value

Object

See Also