El método UInt16.GetHashCode se usa para obtener el HashCode para la instancia actual de UInt16.
Sintaxis: anulación pública int GetHashCode();
Valor devuelto: este método devuelve un código hash entero con signo de 32 bits.
Los siguientes programas ilustran el uso del método discutido anteriormente:
Ejemplo 1:
// C# program to illustrate the // UInt16.GetHashCode() Method using System; class GFG { // Main Method public static void Main() { // Taking UInt16 variable // i.e. ushort data type ushort s1 = 124; // Getting the hash code for UInt16 // using GetHashCode() method int result = s1.GetHashCode(); // Display the HashCode Console.WriteLine("HashCode for UInt16 is: {0}", result); } }
Producción:
HashCode for UInt16 is: 124
Ejemplo 2:
// C# program to illustrate the // UInt16.GetHashCode() Method using System; class GFG { // Main Method public static void Main() { // using result() Method result(UInt16.MinValue); result(UInt16.MaxValue); } // result() method public static void result(ushort val) { // using GetHashCode() method int code = val.GetHashCode(); // Display the hashcode Console.WriteLine("HashCode for {0} is {1}", val, code); } }
Producción:
HashCode for 0 is 0 HashCode for 65535 is 65535
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