This method is used to return the hash code for this instance.
Syntax:
public override int GetHashCode ();
Return Value: This method returns a 32-bit signed integer hash code.
Below programs illustrate the use of Char.GetHashCode() Method:
Example 1:
csharp
using System;
class GFG {
public static void Main()
{
char ch1 = 'B' ;
int val = ch1.GetHashCode();
Console.WriteLine("Hashcode :- {0}", val);
}
}
|
Output:Hashcode :- 4325442
Example 2:
csharp
using System;
class GFG {
public static void Main()
{
hash( 'a' );
hash( 'b' );
hash( 'c' );
hash( 'x' );
hash( 'y' );
hash( 'z' );
}
public static void hash( char ch)
{
int val = ch.GetHashCode();
Console.WriteLine("Hashcode of " + ch +
" :- {0}", val);
}
}
|
Output:Hashcode of a :- 6357089
Hashcode of b :- 6422626
Hashcode of c :- 6488163
Hashcode of x :- 7864440
Hashcode of y :- 7929977
Hashcode of z :- 7995514
Reference: