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:
Example 2:
Note: If the current instance is a reference type, the
Equals(Object) method checks for reference equality.