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