此方法用于返回值类型DateTime的TypeCode。
Syntax: public TypeCode GetTypeCode ();
Return Value: This method returns the enumerated constant, DateTime.
下面的程序说明了DateTime.GetTypeCode()方法的用法
范例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);
}
}
输出:
TypeCode is DateTime
范例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);
}
}
输出:
TypeCode of 01/03/2010 04:00:15 is DateTime
TypeCode of 01/05/2010 04:00:15 is DateTime
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.datetime.gettypecode?view=netframework-4.7.2