A
Alexander Gorbylev
Because
Right is:
Math.DivRem(MaxValue, 2, out remainder)
RectangleF[] fillRectangles = new RectangleF[(int)(MaxValue / 2) +
remainder];
Distraction on last degree and hurly-burly...

int remainder= (int)(Math.DivRem(MaxValue, 2, out remainder));
Right is:
Math.DivRem(MaxValue, 2, out remainder)
RectangleF[] fillRectangles = new RectangleF[(int)(MaxValue / 2) +
remainder];
Distraction on last degree and hurly-burly...
