C # - How to sort a DataTable by date

I have a datatable that has a date column, but I'm at a dead end how to sort it by this column. Any suggestions?

+6
date c # datatable
source share
1 answer
DataView view = DataTable.DefaultView; view.Sort = "DateColumn"; 
+17
source share

All Articles