Answers for "get distinct from datatable c#"

C#
2

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