El método SByte.Equals se usa para obtener un valor que indica si la instancia actual es igual a un objeto especificado o SByte o no. Hay 2 métodos en la lista de sobrecarga de este método de la siguiente manera:
- Método Equals(SByte)
- Método Igual a (Objeto)
Método SByte.Equals(SByte)
Este método se utiliza para devolver un valor que indica si la instancia actual es igual a un valor SByte especificado o no.
Sintaxis: public bool Equals (sbyte obj);
Aquí, se necesita un valor de SByte para compararlo con la instancia actual.Valor de retorno: este método devuelve verdadero si obj tiene el mismo valor que esta instancia; de lo contrario, es falso.
Los siguientes programas ilustran el uso del método SByte.Equals(SByte) :
Ejemplo 1:
// C# program to demonstrate the // SByte.Equals(SByte) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 sbyte value1 = 42; // Declaring and initializing value2 sbyte value2 = 23; // using Equals(SByte) 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); } }
42 is not equal to 23
Ejemplo 2:
// C# program to demonstrate the // SByte.Equals(SByte) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(78, 58); get(45, 45); get(10, 20); get(SByte.MaxValue, SByte.MinValue); } // defining get() method public static void get(sbyte value1, sbyte value2) { // using Equals(SByte) 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); } }
78 is not equal to 58 45 is equal to 45 10 is not equal to 20 127 is not equal to -128
Método SByte.Equals(Objeto)
Este método se utiliza para devolver un valor que indica si la instancia actual es igual a un objeto especificado o no.
Sintaxis: public override bool Equals (object obj);
Aquí, se necesita un objeto para compararlo con la instancia actual.Valor devuelto: este método devuelve verdadero si obj es una instancia de SByte y es igual al valor de esta instancia de lo contrario, falso.
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# program to demonstrate the // SByte.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 sbyte value1 = 10; // Declaring and initializing value2 object value2 = 1 / 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); } }
10 is not equal to 0
Ejemplo 2:
// C# program to demonstrate the // SByte.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(112, 85); get(124, 154); get(87, 87); get(54, 76); } // defining get() method public static void get(sbyte value1, object value2) { // compare both SByte value // 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); } }
112 is not equal to 85 124 is not equal to 154 87 is not equal to 87 54 is not equal to 76
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