Constructs a new array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Array2D(
int rowCount,
int columnCount
)
Public Sub New (
rowCount As Integer,
columnCount As Integer
)
public:
Array2D(
int rowCount,
int columnCount
)
new :
rowCount : int *
columnCount : int -> Array2D
Parameters
- rowCount
- Type: SystemInt32
The number of rows. - columnCount
- Type: SystemInt32
The number of columns.
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