PEAPI

BoundArray Constructor (Type, UInt32, Int32[], Int32[])

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

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

Parameters

elementType
the type of the elements
dimensions
the number of dimensions
loBounds
lower bounds of dimensions
upBounds
upper bounds of dimensions

See Also

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