I am using a list to keep track of a number of custom Row
objects as follows:
Public Rows As List(Of Row)()
Row
has 2 properties, Key
(a String) and Cells
(an ArrayList).
I need to be able to sort each Row
within Rows
based on a developer defined index of the Cells
ArrayList.
So for example based on the following Row
s
Row1.Cells = ("b", "12")
Row2.Cells = ("a", "23")
Rows.Sort(0)
would result in Row2
being first in the Rows
list. What would be the best way of going about implementing this?
Thanks