Returns the array starting at the specified position with the specified leading dimension.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public NativeArray2D<T> From(
int row,
int column,
int leadingDimension
)
Public Function From (
row As Integer,
column As Integer,
leadingDimension As Integer
) As NativeArray2D(Of T)
public:
NativeArray2D<T> From(
int row,
int column,
int leadingDimension
)
member From :
row : int *
column : int *
leadingDimension : int -> NativeArray2D<'T>
Parameters
- row
- Type: SystemInt32
The zero-based row of the top left element. - column
- Type: SystemInt32
The zero-based column of the top left element. - leadingDimension
- Type: SystemInt32
The leading dimension of the 2D array.
Return Value
Type:
NativeArray2DT
Reference