Este método se usa para obtener un valor que indica si la instancia actual es igual a un objeto específico o no.
Sintaxis: public override bool Equals (object obj);
Aquí, se necesita un objeto para compararlo con la instancia actual o nula.Valor devuelto: este método devuelve verdadero si obj es una instancia de Byte y es igual al valor de la instancia actual; de lo contrario, es falso.
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# program to demonstrate the // Byte.Equals(Object) Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 byte value1 = 10; // Declaring and initializing value2 object value2 = 2/47; // using Equals(object) method bool status = value1.Equals(value2); // checking the status if (status) Console.WriteLine("{0} is equal to {1}", value1, value2); else Console.WriteLine("{0} is not equal to {1}", value1, value2); } }
Producción:
10 is not equal to 0
Ejemplo 2:
// C# program to demonstrate the // Byte.Equals(Object) Method using System; class GFG { // Main Method public static void Main() { // calling get() method get(5, 5); get(5, 4); get(10, 20); // using explicit type casting get(7, (byte)7); } // defining get() method public static void get(byte value1, object value2) { // using Equals(object) method bool status = value1.Equals(value2); // checking the status if (status) Console.WriteLine("{0} is equal to {1}", value1, value2); else Console.WriteLine("{0} is not equal to {1}", value1, value2); } }
Producción:
5 is not equal to 5 5 is not equal to 4 10 is not equal to 20 7 is equal to 7
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