How to get the HashCode for the string in C#?


To get the HashCode for the string, the code is as follows, the code is as follows −

Example

 Live Demo

using System;
public class Demo {
   public static void Main(String[] args) {
      string str1 = "Akon";
      string str2 = "Eminem";
      Console.WriteLine("String 1 = "+str1);
      Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode());
      Console.WriteLine("String 2 = "+str2);
      Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode());
      Console.WriteLine("String 1 is equal to String 2: {0}", str1.Equals(str2));
   }
}

Output

This will produce the following output −

String 1 = Akon
HashCode of String 1 = 416613838
String 2 = Eminem
HashCode of String 2 = 40371907
String 1 is equal to String 2: False

Example

Let us see another example −

 Live Demo

using System;
public class Demo {
   public static void Main(String[] args) {
      string str1 = "Imagine Dragons";
      string str2 = "Imagine Dragons";
      Console.WriteLine("String 1 = "+str1);
      Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode());
      Console.WriteLine("String 2 = "+str2);
      Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode());
      Console.WriteLine("String 1 is equal to String 2: {0}", str1.Equals(str2));
   }
}

Output

This will produce the following output −

String 1 = Imagine Dragons
HashCode of String 1 = -1546868095
String 2 = Imagine Dragons
HashCode of String 2 = -1546868095
String 1 is equal to String 2: True

Updated on: 06-Dec-2019

145 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements