C#| DateTime.GetHashCode()方法与示例

DateTime.GetHashCode() 方法

DateTime.GetHashCode()方法用于获取DateTime类对象的32位带符号整数哈希码。

语法:

    int DateTime.GetHashCode();

Parameter(s):

  • 它不接受任何参数。

返回值:

此方法的返回类型为int,它返回32位整数哈希码。

举例说明方法的例子DateTime.GetHashCode()

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int res = 0;

            //创建日期时间类的对象
            DateTime dt1 = new DateTime(2019,1,1,10,10,10);

            //获取DateTime对象的哈希码。
            res = dt1.GetHashCode();

            //打印DateTime对象的哈希码。
            Console.WriteLine("HashCode of dt1 is: " + res);

            Console.WriteLine();  
        }
    }
}

输出结果

HasCode of dt1 is: 1193378513