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