I have a DirectoryInfo object which I would like to sort on creationdate of the directories. I can't find a way to do it. I even tried to convert it to a 2 dimensional array but that lacks sorting methods.Anybody done this?
Why not just manually create a datatable and then sort it?
I forgot about the DataTable's sorting capabilities.Just sorting a datatable would that mean thisL:Datatable1.Select("1=1","myColumnName");Or is there a better / cleaner way?