Array2D<T>.Row Method

Returns the array slice that corresponds to a row in the array.

Definition

Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public ArraySlice<T> Row(
	int row
)

Parameters

row  Int32
The zero-based row.

Return Value

ArraySlice<T>
An array slice that starts at the first element in the row.

See Also