i have a list of datarows. each row is having mutiple columns like userid,date,flag,etc.
i want to sort the based on date. how can i do that ?
Dim
listOfRows As New List(Of DataRow)()
For value As Integer = c To
count - 1
r = tableToRead.Rows(value)
listOfRows.Add(r)
i want to sort the listOfRows in ascending order of date which is a column in a row