ABT.PointerType.PointerType C# (CSharp) 메소드

PointerType() 공개 메소드

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