El método DateTimeOffset.GetHashCode se utiliza para obtener el código hash del objeto DateTimeOffset actual.
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 DateTimeOffset.GetHashCode() :
Ejemplo 1:
// C# program to demonstrate the // DateTimeOffset.GetHashCode() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // creating object of DateTimeOffset DateTimeOffset offset = new DateTimeOffset(2007, 6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0)); // Returns the hash code for the // current DateTimeOffset object. // instance using GetHashCode() method int value = offset.GetHashCode(); // Display the HashCode Console.WriteLine("HashCode for DateTimeOffset is: {0}", value); } }
Producción:
HashCode for DateTimeOffset is: 981031011
Ejemplo 2:
// C# program to demonstrate the // DateTimeOffset.GetHashCode() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() Method get(new DateTimeOffset(2007, 6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0))); get(new DateTimeOffset(2017, 6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0))); } public static void get(DateTimeOffset offset) { // Returns the hash code for the // current DateTimeOffset object. // instance using GetHashCode() method int value = offset.GetHashCode(); // Display the HashCode Console.WriteLine("HashCode for DateTimeOffset is: {0}", value); } }
Producción:
HashCode for DateTimeOffset is: 981031011 HashCode for DateTimeOffset is: 1633960685
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA