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;
        }