VOOZH about

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

⇱ Check if two SortedDictionary objects are equal in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Check if two SortedDictionary objects are equal in C#

Last Updated : 11 Jul, 2025
Equals(Object) Method which is inherited from the Object class is used to check if a specified SortedDictionary object is equal to another SortedDictionary 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
Note: If the current instance is a reference type, the Equals(Object) method checks for reference equality.
Comment

Explore