Click or drag to resize
AlgorithmsRemoveDuplicates Method
Overload List
  NameDescription
Public methodStatic memberRemoveDuplicatesT(IEnumerableT)
Remove consecutive equal items from a collection, yielding another collection. In each run of consecutive equal items in the collection, all items after the first item in the run are removed.
Public methodStatic memberRemoveDuplicatesT(IEnumerableT, IEqualityComparerT)
Remove consecutive equal items from a collection, yielding another collection. In each run of consecutive equal items in the collection, all items after the first item in the run are removed. A passed IEqualityComparer is used to determine equality.
Public methodStatic memberRemoveDuplicatesT(IEnumerableT, BinaryPredicateT)
Remove consecutive "equal" items from a collection, yielding another collection. In each run of consecutive equal items in the collection, all items after the first item in the run are removed. The passed BinaryPredicate is used to determine if two items are "equal".
Top
See Also