Array2D<T>.CreateEmpty Method

Creates an empty 2D array with the specified leading dimension.

Definition

Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Array2D<T> CreateEmpty(
	int leadingDimension
)

Parameters

leadingDimension  Int32
The leading dimension of the array.

Return Value

Array2D<T>
A 2D array with the specified leading dimension, zero offset and no elements.

See Also