PEAPI

BoundArray Constructor (Type, UInt32, Int32[])

Create a new multi dimensional array type eg. elemType[5,10,20] would be new BoundArray(elemType,3,[5,10,20])

[Visual Basic]
Overloads Public Sub New( _
   ByVal elementType As PEAPI.Type, _
   ByVal dimensions As System.UInt32, _
   ByVal size As Integer() _
)
[C#]
public BoundArray(
   Type elementType,
   uint dimensions,
   int[] size
);

Parameters

elementType
the type of the elements
dimensions
the number of dimensions
size
the sizes of the dimensions

See Also

BoundArray Class | BoundArray Members | PEAPI Namespace | BoundArray Constructor Overload List