Creates an empty 2D array with the specified leading dimension.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static NativeArray2D<T> CreateEmpty(
int leadingDimension
)
Public Shared Function CreateEmpty (
leadingDimension As Integer
) As NativeArray2D(Of T)
public:
static NativeArray2D<T> CreateEmpty(
int leadingDimension
)
static member CreateEmpty :
leadingDimension : int -> NativeArray2D<'T>
Parameters
- leadingDimension
- Type: SystemInt32
The leading dimension of the array.
Return Value
Type:
NativeArray2DTA 2D array with the specified leading dimension, zero offset and no elements.
Reference