What is the cleanest way to ask a DataGridView to return "indexes of rows that have selected cells"? This is not the same as DataGridView.SelectedRows. I don't allow Row or Column selection. So users must select blocks of cells. I just need to find out which rows have selected cells in them.
Is there some clever lambda expression I should be using? What would you do?
If this helps: In the code I am writing I have already inherited from DataGridView and I'm in my own custom class DataGridViewExt.