DateTimeOffset.GetHashCode Method in C# Last Updated : 23 Mar, 2019 Comments Improve Suggest changes Like Article Like Report DateTimeOffset.GetHashCode Method is used to get the hash code for the current DateTimeOffset object. Syntax: public override int GetHashCode (); Return Value: This method returns a 32-bit signed integer hash code. Below programs illustrate the use of DateTimeOffset.GetHashCode() Method: Example 1: csharp // 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); } } Output: HashCode for DateTimeOffset is: 981031011 Example 2: csharp // 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); } } Output: HashCode for DateTimeOffset is: 981031011 HashCode for DateTimeOffset is: 1633960685 Comment More infoAdvertise with us Next Article DateTimeOffset.GetHashCode Method in C# R rohitprasad3 Follow Improve Article Tags : C# CSharp-method CSharp-DateTimeOffset-Struct Similar Reads DateTime.GetHashCode() Method in C# This method is used to return the hash code for this instance. Syntax: public override int GetHashCode (); Return Value: This method returns a 32-bit signed integer hash code. Below programs illustrate the use of DateTime.GetHashCode() Method: Example 1: csharp // C# program to demonstrate the // Da 1 min read DateTimeOffset.EqualsExact() Method in C# DateTimeOffset.EqualsExact(DateTimeOffset) Method is used to determine whether the current DateTimeOffset object represents the same time and has the same offset as a specified DateTimeOffset object. Syntax: public bool EqualsExact (DateTimeOffset other); Here, it takes the object to compare to the 2 min read DateTime.GetTypeCode() Method in C# This method is used to return the TypeCode for value type DateTime. Syntax: public TypeCode GetTypeCode (); Return Value: This method returns the enumerated constant, DateTime. Below programs illustrate the use of DateTime.GetTypeCode() Method Example 1: csharp // C# program to demonstrate the // Da 1 min read Double.GetHashCode() Method in C# Double.GetHashCode() Method is used to return the hash code for this instance. Syntax: public override int GetHashCode (); Return Value: This method returns a 32-bit signed integer hash code. Below programs illustrate the use of Double.GetHashCode() Method: Example 1: csharp // C# program to demonst 1 min read DateTimeOffset.FromFileTime() Method in C# DateTimeOffset.FromFileTime(Int64) Method is used to convert the specified Windows file time to an equivalent local time. Syntax: public static DateTimeOffset FromFileTime (long fileTime); Here, it takes a Windows file time, expressed in ticks. Return Value: This method returns an object that repres 2 min read Like