C# Int64 GetHashCode
Description
Int64 GetHashCode
returns the hash code for this instance.
Syntax
Int64.GetHashCode
has the following syntax.
public override int GetHashCode()
Returns
Int64.GetHashCode
method returns A 32-bit signed integer hash code.
Example
The following code example demonstrates the GetHashCode method.
using System;// w w w.ja va 2s . c o m
class Sample
{
public static void Main()
{
Int64 e1 = 4;
Console.WriteLine(e1.GetHashCode());
}
}
The code above generates the following result.