Answers for "select distinct in datatable c#"

C#
1

get distinct from datatable c#

DataView view = new DataView(table);
DataTable distinctValues = view.ToTable(true, "Column1", "Column2" ...);
Posted by: Guest on September-06-2021

C# Answers by Framework

Browse Popular Code Answers by Language