NativeArray2D<T>.RowFrom Method

Returns the array slice that corresponds to a row in the array that starts at the specified position.

Definition

Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public NativeArraySlice<T> RowFrom(
	int row,
	int column
)

Parameters

row  Int32
The zero-based row of the first element in the array slice.
column  Int32
The zero-based column of the first element in the array slice.

Return Value

NativeArraySlice<T>
An array slice that corresponds to a row in the array that starts at the specified position.

See Also