C# UInt32 GetHashCode
Description
UInt32 GetHashCode
returns the hash code for this instance.
Syntax
UInt32.GetHashCode
has the following syntax.
public override int GetHashCode()
Returns
UInt32.GetHashCode
method returns A 32-bit signed integer hash code.
Example
using System;/*from ww w .j a v a 2 s . c o m*/
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt32.MinValue.GetHashCode());
}
}
The code above generates the following result.