Returns an array with offset that corresponds to a column in the array that starts at the specified position.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public NativeArray1D<T> ColumnFrom(
int row,
int column
)
Public Function ColumnFrom (
row As Integer,
column As Integer
) As NativeArray1D(Of T)
public:
NativeArray1D<T> ColumnFrom(
int row,
int column
)
member ColumnFrom :
row : int *
column : int -> NativeArray1D<'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:
NativeArray1DTAn array with offset that corresponds to a row in the array that starts at the specified position.
All elements in a column are stored contiguously.
Reference