This method is used to return the TypeCode for value type DateTime.
csharp
csharp
Syntax: public TypeCode GetTypeCode (); Return Value: This method returns the enumerated constant, DateTime.Below programs illustrate the use of DateTime.GetTypeCode() Method Example 1:
// 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:
Example 2:
TypeCode is DateTime
// 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:
Reference:
TypeCode of 01/03/2010 04:00:15 is DateTime TypeCode of 01/05/2010 04:00:15 is DateTime