PEAPI

BoundArray 

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])

Overload List

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])

public BoundArray(Type,uint,int[],int[]);

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

public BoundArray(Type,uint,int[]);

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

public BoundArray(Type,uint);

See Also

BoundArray Class | BoundArray Members | PEAPI Namespace