Este método se utiliza para devolver un valor que indica si esta instancia y un objeto Byte especificado representan el mismo valor.
Sintaxis:
public bool Equals (byte obj);
Aquí, obj es un objeto de byte para comparar con esta instancia.
Valor devuelto: este método devuelve verdadero si obj es igual a esta instancia; de lo contrario, devuelve falso .
Los siguientes programas ilustran el uso del método Byte.Equals(Byte) :
Ejemplo 1:
CSHARP
// C# program to demonstrate // Byte.Equals(byte) Method using System; class GFG { // Main Method public static void Main() { // Declaring val1 and val2 byte val1, val2; // initializing the val1, val2 and val3 val1 = 12; val2 = 13; // getting compared constant // using CompareTo method bool i = val2.Equals(val1); // checking the condition if (i) Console.Write("val2 is equal to val1"); else Console.Write("val2 is not equal to val1"); } }
Producción:
val2 is not equal to val1
Ejemplo 2:
CSHARP
// C# program to demonstrate // Byte.Equals(byte) Method using System; class GFG { // Main Method public static void Main() { // checking the condition // calling check() method check((byte)10, (byte)20); check((byte)30, (byte)20); check((byte)10, (byte)10); check((byte)5, (byte)7); check((byte)40, (byte)50); check((byte)1, (byte)1); } // Defining the check method public static void check(byte v1, byte v2) { // getting compared constant // using Equals() method bool i = v1.Equals(v2); // checking the condition if (i) Console.WriteLine(v1 + " is equal to " + v2); else Console.WriteLine(v1 + " is not equal to " + v2); } }
Producción:
10 is not equal to 20 30 is not equal to 20 10 is equal to 10 5 is not equal to 7 40 is not equal to 50 1 is equal to 1
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA