I need to find and remove the duplicates from a List of tuples. Basically, my structure is made like that:
List> myList = new L
Use distinct() method:
distinct()
myList.Distinct().ToList();