Constructs a new array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Array2D(
int rowCount,
int columnCount,
bool initializeToZero
)
Public Sub New (
rowCount As Integer,
columnCount As Integer,
initializeToZero As Boolean
)
public:
Array2D(
int rowCount,
int columnCount,
bool initializeToZero
)
new :
rowCount : int *
columnCount : int *
initializeToZero : bool -> Array2D
Parameters
- rowCount
- Type: SystemInt32
The number of rows. - columnCount
- Type: SystemInt32
The number of columns. - initializeToZero
- Type: SystemBoolean
Indicates whether the elements should be
explicitly set to zero.
Use this constructor to create an array that can hold the specified number of rows and columns of data.
All values are stored contiguously in column-major order.
Reference