I have a Datatable with 4 columns in which there are 5 rows filled so that in total I have 20 filled cells.
How can I then change the data of the 4 cells in row 2 to row 4 and from row 4 to row 2?
DataTable inicial:
c1 c2 c3 c4
f1 d11 d12 d13 d14
f2 d21 d22 d23 d24
f3 d31 d32 d33 d34
f4 d41 d42 d43 d44
f5 d51 d52 d53 d54
DataTable final:
c1 c2 c3 c4
f1 d11 d12 d13 d14
f2 d41 d42 d43 d44
f3 d31 d32 d33 d34
f4 d21 d22 d23 d24
f5 d51 d52 d53 d54