I've been trying to implement the algorithm as seen in the bottom answer to this question.
Algorithm for finding the fewest rectangles to cover a set of rectangles
I've got two lists, one containing the vertical lines and the other one containing horizontal lines.
I'm using a simple structure for my lines that has just two Points.
And then I have another list of Points that tells me which lines have intersected, the X member being representative of an index in the horizontal list and the Y member being representative of an index in the vertical list.
I can't seem to quite grasp how I'm supposed to go about writing this in c# and how to use the data I've got and put into this algorithm.