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