.NET: How to efficiently check for uniqueness in a List of 50,000 items? December 19, 2023 by Tarik You should use the HashSet<T> class, which is specifically designed for what you’re doing.