Get the Hash code for string value : Hash Code « Development Class « C# / C Sharp






Get the Hash code for string value

Get the Hash code for string value

using System;
public class HashValues {
  public static void Main( ) {    
    String[] identifiers ={"A","B","C","D","E","F","G","H","I","J","K","L"}; 
    
    for(int i = 0; i < identifiers.Length; i++) {
      String id = identifiers[i];
      int hash = id.GetHashCode();
      int code = hash % 23;
      Console.WriteLine("{0,-12}{1,12}{2,12}", id, hash, code);
    }
  }
}

           
       








Related examples in the same category

1.Class behaves properly using overridden Equals and GetHashCode methodsClass behaves properly using overridden Equals and GetHashCode methods