DateTime.GetTypeCode() Method in C# Last Updated : 05 Feb, 2019 Comments Improve Suggest changes Like Article Like Report 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 // DateTime.GetTypeCode() // 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 Typecode of date // using GetTypeCode() method; TypeCode value = date.GetTypeCode(); // Display the hashcode Console.WriteLine("TypeCode is {0}", value); } } Output: TypeCode is DateTime Example 2: csharp // C# program to demonstrate the // DateTime.GetTypeCode() // 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 TypeCodeCode of date // using GetTypeCode() method; TypeCode value = date.GetTypeCode(); // Display the ShortTime Console.WriteLine("TypeCode of {0} is {1}", date, value); } } Output: TypeCode of 01/03/2010 04:00:15 is DateTime TypeCode of 01/05/2010 04:00:15 is DateTime Reference: https://docs.microsoft.com/en-us/dotnet/api/system.datetime.gettypecode?view=netframework-4.7.2 Comment More infoAdvertise with us Next Article DateTime.GetTypeCode() Method in C# R rohitprasad3 Follow Improve Article Tags : C# CSharp-method CSharp DateTime 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.GetHashCode Method in C# 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: 2 min read DateTime.FromOADate() Method in C# DateTime.FromOADate(Double) Method is used to return a DateTime equivalent to the specified OLE Automation Date. Syntax: public static DateTime FromOADate (double d); Here, it takes an OLE Automation Date value. Return Value: This method returns an object that represents the same date and time as d. 2 min read Decimal.GetTypeCode Method in C# with Examples Decimal.GetTypeCode method is used to get the TypeCode for value type Decimal. Syntax: public TypeCode GetTypeCode (); Return Value: This method returns the enumerated constant Decimal. Below programs illustrate the use of the above discussed-method: Example 1: csharp // C# program to illustrate the 1 min read DateTime.Equals() Method in C# This method is used to get a value indicating whether two DateTime objects, or a DateTime instance and another object or DateTime, have the same value. There are total 3 methods in the overload list of this method: Equals(DateTime, DateTime)Equals(DateTime)Equals(Object)Equals(DateTime, DateTime) Th 5 min read Like