C# | Check if HashSet and the specified collection contain the same elements Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Here's an example code that demonstrates how to use the Overlaps method to check if a HashSet and a specified collection share common elements in C#: C# using System; using System.Collections.Generic; class Program { static void Main(string[] args) { // Create a HashSet and a List HashSet<int> set1 = new HashSet<int> { 1, 2, 3, 4, 5 }; List<int> list1 = new List<int> { 5, 6, 7, 8 }; // Check if the HashSet and List contain any common elements bool hasOverlap = set1.Overlaps(list1); Console.WriteLine("Do set1 and list1 have common elements? " + hasOverlap); // Create another List with no common elements List<int> list2 = new List<int> { 6, 7, 8 }; // Check if the HashSet and List2 contain any common elements bool hasOverlap2 = set1.Overlaps(list2); Console.WriteLine("Do set1 and list2 have common elements? " + hasOverlap2); Console.ReadLine(); } } OutputDo set1 and list1 have common elements? True Do set1 and list2 have common elements? False A HashSet is an unordered collection of the unique elements. It comes under System.Collections.Generic namespace. It is used in a situation where we want to prevent duplicates from being inserted in the collection. As far as performance is concerned, it is better in comparison to the list. HashSet.SetEquals(IEnumerable) Method is used to check if a HashSet and the specified collection contain the same elements or not. Syntax: mySet1.SetEquals(mySet2); Here, mySet1 and mySet2 are HashSets objects. Return Type: This method return True if the mySet1 is equal to mySet2 else returns False. Exception: This method will give ArgumentNullException if the HashSet is null. Below given are some examples to understand the implementation in a better way: Example 1: CSHARP // C# code to check if HashSet and the specified // collection contain the same elements. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of strings HashSet<string> mySet1 = new HashSet<string>(); // Inserting elements in HashSet mySet1.Add("Geeks"); mySet1.Add("GeeksforGeeks"); mySet1.Add("GeeksClasses"); mySet1.Add("GeeksQuiz"); // Creating a HashSet of strings HashSet<string> mySet2 = new HashSet<string>(); // Inserting elements in HashSet mySet2.Add("Geeks"); mySet2.Add("GeeksforGeeks"); mySet2.Add("GeeksClasses"); mySet2.Add("GeeksQuiz"); // Check if both HashSets contains same elements Console.WriteLine(mySet1.SetEquals(mySet2)); } } Example 2: CSHARP // C# code to check if HashSet and the specified // collection contain the same elements. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of integers HashSet<int> mySet1 = new HashSet<int>(); // Inserting elements in HashSet mySet1.Add(4); mySet1.Add(8); mySet1.Add(12); mySet1.Add(16); // Creating a HashSet of integers HashSet<int> mySet2 = new HashSet<int>(); // Inserting elements in HashSet mySet2.Add(5); mySet2.Add(10); mySet2.Add(15); mySet2.Add(20); // Check if both HashSets contains same elements Console.WriteLine(mySet1.SetEquals(mySet2)); } } Reference: https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.hashset-1.setequals?view=netframework-4.7.2 Comment More infoAdvertise with us Next Article C# | Check if a HashSet and a specified collection share common elements S Sahil_Bansall Follow Improve Article Tags : Misc C# CSharp-method CSharp-Generic-HashSet CSharp-Generic-Namespace C# +2 More Practice Tags : Misc Similar Reads C# | Check if SortedSet and the specified collection contain the same elements SortedSet class represents the collection of objects in sorted order. This class comes under the System.Collections.Generic namespace. SortedSet.SetEquals(IEnumerable) Method is used to check whether the SortedSet and the specified collection contain the same elements. Properties: In C#, SortedSet c 2 min read C# | Check if a HashSet and a specified collection share common elements In C#, you can use the SetEquals method to check if a HashSet and a specified collection contain the same elements. The SetEquals method returns true if the HashSet and the specified collection contain the same elements; otherwise, it returns false. Here is an example code that demonstrates how to u 3 min read C# | Check if a HashSet contains the specified element A HashSet is an unordered collection of the unique elements. It is found in System.Collections.Generic namespace. It is used in a situation where we want to prevent duplicates from being inserted in the collection. As far as performance is concerned, it is better in comparison to the list. HashSet.C 2 min read C# | Check if a HashSet is a subset of the specified collection A HashSet is an unordered collection of the unique elements. It is found in System.Collections.Generic namespace. It is used in a situation where we want to prevent duplicates from being inserted in the collection. As far as performance is concerned, it is better in comparison to the list. HashSet.I 2 min read C# | Check if a HashSet is a superset of the specified collection Sure, here's an example code that demonstrates using the IsSupersetOf method to check if a HashSet<string> is a superset of a List<string> and then printing out a message indicating the result: C# using System; using System.Collections.Generic; public class Program { public static void M 3 min read C# | Check if SortedSet and a specified collection share common elements SortedSet class represents the collection of objects in sorted order. This class comes under the System.Collections.Generic namespace. SortedSet.Overlaps(IEnumerable) Method is used to check whether a SortedSet and a specified collection share common elements or not. Properties: In C#, SortedSet cla 2 min read Like