Hi All,

I am creating a Datatable in memory from several sources. and need to order the data after I've build the Datatable before using it.

I need to order the table by 4 columns and thought that by doing :

Code:
resultTable.DefaultView.Sort = "Column1, Column2, Column3, Column4";
Would do the trick, it appears not to order them, but I do nto receive an error either.