DataFrame<R, C>.TryGetRow Method

Attempts to get the row at the specified row index.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public bool TryGetRow(
	R key,
	out DataFrameRow<R, C> row
)

Parameters

key  R
The key of the row to be returned.
row  DataFrameRow<R, C>
On return, the row with key key, or null if the row key wasn't found.

Return Value

Boolean
true if the row was found; otherwise false.

See Also