C# | Comprobar si dos objetos SortedList son iguales

El método Equals(Object) que se hereda de la clase Object se usa para verificar si el objeto SortedList especificado es igual a otro objeto SortedList 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, falso .

Los siguientes programas ilustran el uso del método mencionado anteriormente:

Ejemplo 1:

// C# program to if a SortedList
// is equal to another SortedList
using System;
using System.Collections;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating a sorted list of key/value pairs
        SortedList fslist = new SortedList();
  
        // Adding pairs to fslist
        fslist.Add("Maths ", 98);
        fslist.Add("English ", 99);
        fslist.Add("Physics ", 97);
        fslist.Add("Chemistry", 96);
        fslist.Add("CSE     ", 100);
  
        // Checking whether fslist is
        // equal to itself or not
        Console.WriteLine(fslist.Equals(fslist));
    }
}

Producción:

True

Ejemplo 2:

// C# program to if a SortedList
// is equal to another SortedList
using System;
using System.Collections;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating a sorted list of key/value pairs
        SortedList fslist = new SortedList();
  
        // Adding pairs to fslist
        fslist.Add("Maths ", 98);
        fslist.Add("English ", 99);
        fslist.Add("Physics ", 97);
        fslist.Add("Chemistry", 96);
        fslist.Add("CSE     ", 100);
  
        // Creating an SortedList
        SortedList fslist2 = new SortedList();
  
        // Adding elements to SortedList
        fslist2.Add("1", "one");
        fslist2.Add("2", "two");
        fslist2.Add("3", "three");
        fslist2.Add("4", "four");
        fslist2.Add("5", "five");
  
        // Checking whether fslist is
        // equal to fslist2 or not
        Console.WriteLine(fslist.Equals(fslist2));
          
        // Creating a sorted list of key/value pairs
        SortedList fslist3 = new SortedList();
          
        // Assigning fslist2 to fslist3
        fslist3 = fslist2;
          
        // Checking whether fslist3 is
        // equal to fslist2 or not
        Console.WriteLine(fslist3.Equals(fslist2));    
    }
}

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *