We use DevExpress and with today release came a weird change to one of their printing class.
The class is named ClosedShapeBase and it is used to print out shape in a report.
The class itself is public, but some of its properties are protected internal abstract, like
public abstract class ClosedShapeBase : ShapeBase
{
protected internal abstract PointF[] CreatePoints(RectangleF bounds, int angle);
}
Is there is any cryptic way to be able to override that member even if it is internal?