I want to remove equal entries from DataTable.
I tried DefaultView, but it only removes the equals and not all entries which including them.
DataView view = table1.DefaultView;
DataTable tbl = view.ToTable();
return tbl;
I want to remove equal entries from DataTable.
I tried DefaultView, but it only removes the equals and not all entries which including them.
DataView view = table1.DefaultView;
DataTable tbl = view.ToTable();
return tbl;
you can do this