Returns an array with offset that corresponds to a column in the array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public NativeArray1D<T> Column(
int column
)
Public Function Column (
column As Integer
) As NativeArray1D(Of T)
public:
NativeArray1D<T> Column(
int column
)
member Column :
column : int -> NativeArray1D<'T>
Parameters
- column
- Type: SystemInt32
The zero-based column.
Return Value
Type:
NativeArray1DTAn array with offset that starts at the first element in the column.
All elements in a column are stored contiguously.
Reference