Equals(Object) Method which is inherited from the Object class is used to check if a specified SortedSet<T> object is equal to another SortedSet<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:
using System;
using System.Collections.Generic;
class Geeks {
public static void Main(String[] args)
{
SortedSet< string > mySet = new SortedSet< string >();
mySet.Add( "DS" );
mySet.Add( "C++" );
mySet.Add( "Java" );
mySet.Add( "JavaScript" );
Console.WriteLine(mySet.Equals(mySet));
}
}
|
Example 2:
using System;
using System.Collections.Generic;
class Geeks {
public static void Main(String[] args)
{
SortedSet< string > mySet1 = new SortedSet< string >();
mySet1.Add( "GeeksforGeeks" );
mySet1.Add( "Noida" );
mySet1.Add( "Data Structure" );
mySet1.Add( "Noida" );
SortedSet< int > mySet2 = new SortedSet< int >();
for ( int i = 0; i < 5; i++) {
mySet2.Add(i * 2);
}
Console.WriteLine(mySet1.Equals(mySet2));
SortedSet< int > mySet3 = new SortedSet< int >();
mySet3 = mySet2;
Console.WriteLine(mySet3.Equals(mySet2));
}
}
|
Note: If the current instance is a reference type, the Equals(Object) method checks for reference equality.