ABT.PointerType.PointerType C# (CSharp) Méthode

PointerType() public méthode

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