Este método se utiliza para devolver el código hash de esta instancia.
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 DateTime.GetHashCode() :
Ejemplo 1:
// C# program to demonstrate the // DateTime.GetHashCode() // Method using System; class GFG { // Main Method public static void Main() { // creating object of DateTime DateTime date = new DateTime(2010, 1, 1, 4, 0, 15); // getting hashcode from DateTime // using GetHashCode() method; int value = date.GetHashCode(); // Display the hashcode Console.WriteLine("hashcode is {0}", value); } }
Producción:
hashcode is 103491886
Ejemplo 2:
// C# program to demonstrate the // DateTime.GetHashCode() // Method using System; class GFG { // Main Method public static void Main() { // calling check() method check(new DateTime(2010, 1, 3, 4, 0, 15)); check(new DateTime(2010, 1, 5, 4, 0, 15)); } public static void check(DateTime date) { // getting HashCode from DateTime // using GetHashCode() method; int value = date.GetHashCode(); // Display the ShortTime Console.WriteLine("HashCode of {0} is {1}", date, value); } }
Producción:
HashCode of 01/03/2010 04:00:15 is 1802939328 HashCode of 01/05/2010 04:00:15 is -1337841070
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