El método Equals(Object) que se hereda de la clase Object se usa para verificar si un objeto StringCollection especificado es igual a otro objeto StringCollection o no.
Sintaxis:
public virtual bool Equals (object obj);
Aquí, obj es el objeto que se comparará con el objeto actual.
Valor devuelto: este método devuelve verdadero si el objeto especificado es igual al objeto actual; de lo contrario, devuelve falso .
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# code to check if two // StringCollections are equal or not using System; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // creating a StringCollection named myCol StringCollection myCol = new StringCollection(); // Adding elements in StringCollection myCol.Add("A"); myCol.Add("B"); myCol.Add("C"); myCol.Add("D"); myCol.Add("E"); // Checking whether myCol is // equal to itself or not Console.WriteLine(myCol.Equals(myCol)); } }
Producción:
True
Ejemplo 2:
// C# code to check if two // StringCollections are equal or not using System; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // creating a StringCollection named my1 StringCollection my1 = new StringCollection(); // Adding elements in StringCollection my1.Add("GFG"); my1.Add("Noida"); my1.Add("DS"); my1.Add("Geeks"); my1.Add("Classes"); // Creating a StringCollection named my2 StringCollection my2 = new StringCollection(); my2.Add("Australia"); my2.Add("Belgium"); my2.Add("Netherlands"); my2.Add("China"); my2.Add("Russia"); my2.Add("India"); // Checking whether my1 is // equal to my2 or not Console.WriteLine(my1.Equals(my2)); // Creating a new StringCollection StringCollection my3 = new StringCollection(); // Assigning my2 to my3 my3 = my2; // Checking whether my3 is // equal to my2 or not Console.WriteLine(my3.Equals(my2)); } }
Producción:
False True
Nota: si la instancia actual es un tipo de referencia, el método Equals(Object) comprueba la igualdad de referencia.
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA