El método UInt32.Equals se usa para obtener un valor que indica si la instancia actual es igual a un objeto especificado o un entero sin signo de 32 bits o no. Hay 2 métodos en la lista de sobrecarga de este método de la siguiente manera:
- Método Igual a (UInt32)
- Método Igual a (Objeto)
Método UInt32.Equals(UInt32)
Este método se utiliza para devolver un valor que indica si la instancia actual es igual a un valor entero sin signo de 32 bits especificado o no.
Sintaxis: public bool Equals (uint obj);
Aquí, se necesita un valor entero sin signo de 32 bits 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 UInt32.Equals(UInt32) :
Ejemplo 1:
// C# program to demonstrate the // UInt32.Equals(UInt32) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 uint value1 = 5322; // Declaring and initializing value2 uint value2 = 7328; // using Equals(UInt32) 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); } }
5322 is not equal to 7328
Ejemplo 2:
// C# program to demonstrate the // UInt32.Equals(UInt32) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(9128, 1978); get(6455, 6455); get(10120, 10120); get(UInt32.MaxValue, UInt32.MinValue); } // defining get() method public static void get(uint value1, uint value2) { // using Equals(UInt32) 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); } }
9128 is not equal to 1978 6455 is equal to 6455 10120 is equal to 10120 4294967295 is not equal to 0
Método UInt32.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 UInt32 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 // UInt32.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 uint value1 = 11227; // Declaring and initializing value2 object value2 = (uint)1 / 17; // 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); } }
11227 is not equal to 0
Ejemplo 2:
// C# program to demonstrate the // UInt32.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(11232, 7455); get(1412, 14314); get(7744, (uint)7744); get(54, 76); } // defining get() method public static void get(uint 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); } }
11232 is not equal to 7455 1412 is not equal to 14314 7744 is equal to 7744 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