== Why is this an issue? When testing if a collection contains a specific item by simple equality, both `ICollection.Contains(T item)` and `IEnumerable.Any(x => x == item)` can be used. However, `Any` searches the data structure in a linear manner using a foreach loop, whereas `Contains` is considerably faster in some collection types, because of the underlying implementation. More specifically: - `HashSet` is a hashtable, and therefore has an O(1) lookup - `SortedSet` is a red-black tree, and therefore has a O(logN) lookup - `List` is a linear search, and therefore has an O(N) lookup, but the EqualityComparer is optimized for the `T` type, which is not the case for `Any` For small collections, the performance difference may be negligible, but for large collections, it can be noticeable.