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