I have a DataTable which looks like this:
DataTable
ID Name DateBirth ....................... 1 aa 1.1.11 2 bb 2.3.11 2 cc
you can try this
DataTable uniqueCols = dt.DefaultView.ToTable(true, "ID");