VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-check-if-two-hashsett-objects-are-equal/

⇱ C# | Check if two HashSet<T> objects are equal - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Check if two HashSet<T> objects are equal

Last Updated : 11 Jul, 2025
Equals(Object) Method which is inherited from the Object class is used to check if a specified HashSet<T> object is equal to another HashSet<T> object or not. Syntax:
public virtual bool Equals (object obj);
Here, obj is the object which is to be compared with the current object. Return Value: This method return true if the specified object is equal to the current object otherwise it returns false. Below programs illustrate the use of above-discussed method: Example 1:
Output:
True
Example 2:
Output:
False
True
Comment

Explore