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