DateTimeOffset.GetHashCode方法用于获取当前DateTimeOffset对象的哈希码。
用法: public override int GetHashCode ();
返回值:此方法返回32位有符号整数哈希码。
以下示例程序旨在说明DateTimeOffset.GetHashCode()方法的使用:
范例1:
// C# program to demonstrate the
// DateTimeOffset.GetHashCode()
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// creating object of DateTimeOffset
DateTimeOffset offset = new DateTimeOffset(2007,
6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0));
// Returns the hash code for the
// current DateTimeOffset object.
// instance using GetHashCode() method
int value = offset.GetHashCode();
// Display the HashCode
Console.WriteLine("HashCode for DateTimeOffset is:{0}", value);
}
}
输出:
HashCode for DateTimeOffset is:981031011
范例2:
// C# program to demonstrate the
// DateTimeOffset.GetHashCode()
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() Method
get(new DateTimeOffset(2007, 6, 1, 7,
55, 0, new TimeSpan(-5, 0, 0)));
get(new DateTimeOffset(2017, 6, 1, 7,
55, 0, new TimeSpan(-5, 0, 0)));
}
public static void get(DateTimeOffset offset)
{
// Returns the hash code for the
// current DateTimeOffset object.
// instance using GetHashCode() method
int value = offset.GetHashCode();
// Display the HashCode
Console.WriteLine("HashCode for DateTimeOffset is:{0}", value);
}
}
输出:
HashCode for DateTimeOffset is:981031011 HashCode for DateTimeOffset is:1633960685
相关用法
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 DateTimeOffset.GetHashCode Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。