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

EqualType() 공개 메소드

public EqualType ( ExprType other ) : System.Boolean
other ExprType
리턴 System.Boolean
        public override Boolean EqualType(ExprType other) =>
            other.Kind == ExprTypeKind.POINTER && ((PointerType)other).RefType.EqualType(this.RefType);
    }