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