C# UInt64 GetHashCode
Description
UInt64 GetHashCode
returns the hash code for this instance.
Syntax
UInt64.GetHashCode
has the following syntax.
public override int GetHashCode()
Returns
UInt64.GetHashCode
method returns A 32-bit signed integer hash code.
Example
/*www .j av a2 s . co m*/
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt64.MaxValue.GetHashCode());
}
}
The code above generates the following result.