ABT.PointerType.PointerType C# (CSharp) Method

PointerType() public method

public PointerType ( ExprType refType, System.Boolean isConst = false, System.Boolean isVolatile = false ) : System
refType ExprType
isConst System.Boolean
isVolatile System.Boolean
return System
        public PointerType(ExprType refType, Boolean isConst = false, Boolean isVolatile = false)
            : base(isConst, isVolatile) {
            this.RefType = refType;
        }