PERWAPI.BoundArray.BoundArray C# (CSharp) Méthode

BoundArray() public méthode

Create a new multi dimensional array type eg. elemType[,,] would be new BoundArray(elemType,3)
public BoundArray ( Type elementType, int dimensions ) : System
elementType Type the type of the elements
dimensions int the number of dimensions
Résultat System
        public BoundArray(Type elementType, int dimensions)
            : base(elementType,0x14)
        {
            numDims = (uint)dimensions;
        }

Same methods

BoundArray::BoundArray ( Type elementType, int dimensions, int size ) : System
BoundArray::BoundArray ( Type elementType, int dimensions, int loBounds, int upBounds ) : System