DataView view = newDt.DefaultView;
view.Sort = "Description asc,replyEnd desc";
DataTable table2 = view.ToTable();

05-11 20:01