How to select distinct rows in a datatable and store into an array May 30, 2022 by Tarik DataView view = new DataView(table); DataTable distinctValues = view.ToTable(true, "Column1", "Column2" ...);