Equals(Object) Method which is inherited from the Object class is used to check if a specified StringCollection object is equal to another StringCollection 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.Specialized;
class GFG {
public static void Main()
{
StringCollection myCol = new StringCollection();
myCol.Add( "A" );
myCol.Add( "B" );
myCol.Add( "C" );
myCol.Add( "D" );
myCol.Add( "E" );
Console.WriteLine(myCol.Equals(myCol));
}
}
|
Example 2:
using System;
using System.Collections.Specialized;
class GFG {
public static void Main()
{
StringCollection my1 = new StringCollection();
my1.Add( "GFG" );
my1.Add( "Noida" );
my1.Add( "DS" );
my1.Add( "Geeks" );
my1.Add( "Classes" );
StringCollection my2 = new StringCollection();
my2.Add( "Australia" );
my2.Add( "Belgium" );
my2.Add( "Netherlands" );
my2.Add( "China" );
my2.Add( "Russia" );
my2.Add( "India" );
Console.WriteLine(my1.Equals(my2));
StringCollection my3 = new StringCollection();
my3 = my2;
Console.WriteLine(my3.Equals(my2));
}
}
|
Note: If the current instance is a reference type, the Equals(Object) method checks for reference equality.