How to reverse a DataTable?

@shreyasshete Try Like below it will work.

dt1 = dt.AsEnumerable.Reverse.CopyToDataTable

where dt and dt1 are datatable variables.

8 Likes