Open In App

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:

Next Article

Similar Reads