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:
// 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:
// 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: