Returns the array slice that corresponds to a row in the array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public NativeArraySlice<T> Row(
int row
)
Public Function Row (
row As Integer
) As NativeArraySlice(Of T)
public:
NativeArraySlice<T> Row(
int row
)
member Row :
row : int -> NativeArraySlice<'T>
Parameters
- row
- Type: SystemInt32
The zero-based row.
Return Value
Type:
NativeArraySliceTAn array slice that starts at the first element in the row.
Reference