Data Frame<R, C>.Try Get Row 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#
true if the row was found; otherwise false.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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
Booleantrue if the row was found; otherwise false.