Open In App

C# | Check if two StringDictionary objects are equal or not

Last Updated : 01 Feb, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
Equals(Object) Method which is inherited from the Object class is used to check if a specified StringDictionary object is equal to another StringDictionary 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.

Next Article

Similar Reads