Una array es un grupo de variables del mismo tipo a las que se hace referencia con un nombre común. Y cada elemento de datos se llama un elemento de la array. El método Equals(Object) que es heredado por la clase Array de la clase de objeto se usa para verificar si una array es igual a otra array 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#
// C# code to check if a Array is // equal to other Array or not using System; namespace geeksforgeeks { class GFG { // Main Method public static void Main() { // Two-dimensional array int[, ] intarray = new int[, ] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }; // check if intarray is // equal to itself or not Console.WriteLine(intarray.Equals(intarray)); } } }
True
Ejemplo 2:
C#
// C# code to check if an Array is // equal to other Array or not using System; namespace geeksforgeeks { class GFG { // Main Method public static void Main() { // Creating and initializing new the String String[] arr1 = new String[4] { "Sun", "Mon", "Tue", "Thu" }; // taking anotther array String[] arr2 = new String[4] { "Sun", "Mon", "Tue", "Thu" }; // check if arr1 is // equal to arr2 or not Console.WriteLine(arr1.Equals(arr2)); // assigning arr1 reference to arr3 String[] arr3 = new String[4]; arr3 = arr1; // check if arr2 is // equal to arr3 or not Console.WriteLine(arr2.Equals(arr3)); // check if arr1 is // equal to arr3 or not // it will return true as both // array object refer to same Console.WriteLine(arr1.Equals(arr3)); } } }
False 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