I need to find and remove the duplicates from a List of tuples. Basically, my structure is made like that:
List> myList = new L
You can use Distinct() method of LINQ, like this:
myList = myList.Distinct().ToList();
Note that this would re-create the list, rather than removing the duplicates in place.