El método Equals(Object) que se hereda de la clase Object se usa para comprobar si un objeto SortedDictionary especificado es igual a otro objeto SortedDictionary 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 the two // SortedDictionary are equal or not using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedDictionary named myDict SortedDictionary<string, string> myDict = new SortedDictionary<string, string>(); // Adding key/value pairs in myDict myDict.Add("Australia", "Canberra"); myDict.Add("Belgium", "Brussels"); myDict.Add("Netherlands", "Amsterdam"); myDict.Add("China", "Beijing"); myDict.Add("Russia", "Moscow"); myDict.Add("India", "New Delhi"); // Checking whether myDict is // equal to itself or not Console.WriteLine(myDict.Equals(myDict)); } }
Producción:
True
Ejemplo 2:
// C# code to check if the two // SortedDictionary are equal or not using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedDictionary named myDict SortedDictionary<string, string> myDict1 = new SortedDictionary<string, string>(); // Adding key/value pairs in myDict myDict1.Add("I", "first"); myDict1.Add("II", "second"); myDict1.Add("III", "third"); myDict1.Add("IV", "fourth"); myDict1.Add("V", "fifth"); // Creating a SortedDictionary named myDict2 SortedDictionary<string, string> myDict2 = new SortedDictionary<string, string>(); myDict2.Add("1st", "C"); myDict2.Add("2nd", "C++"); myDict2.Add("3rd", "Java"); myDict2.Add("4th", "C#"); myDict2.Add("5th", "HTML"); myDict2.Add("6th", "PHP"); // Checking whether myDict1 is // equal to myDict2 or not Console.WriteLine(myDict1.Equals(myDict2)); // Creating a new SortedDictionary SortedDictionary<string, string> myDict3 = new SortedDictionary<string, string>(); // Assigning myDict2 to myDict3 myDict3 = myDict2; // Checking whether myDict3 is // equal to myDict2 or not Console.WriteLine(myDict3.Equals(myDict2)); } }
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