Create<n>D<Type-Name>Array
Example: Create<n>D<Type-Name>Array | Array Types and Functions |
Create an array of n dimensions of the type specified in Type-Name.
<Type-Name> ArrayCreate<n>D<Type-Name>Array( int lower_bound,int upper_bound, int lower_bound, int upper_bound...);
lower_bound | The lower bound of one dimension of the array. |
upper_bound | The upper bound of one dimension of the array. |
The Create<n>D<Type-Name>Array family of functions creates arrays of ndimensions of the type specified in Type-name. For each dimension, the call must specify the lower_bound and upper bound.
Create2DByteArray(0, 2, 0, 5);
Create3DByteArray(0, 2, 0, 5,0,5);
Return Values
Parameterization
Parameterization is not applicable to this function.