ABT.ArrayType.ArrayType C# (CSharp) Method

ArrayType() public method

public ArrayType ( ExprType elemType, Int32 numElems ) : System
elemType ExprType
numElems System.Int32
return System
        public ArrayType(ExprType elemType, Int32 numElems)
            : base(elemType.IsConst, elemType.IsVolatile) {
            this.ElemType = elemType;
            this.NumElems = numElems;
        }