如何创建简单的哈希值?例如我有字符串“TechnologyIsCool”以及如何从这个字符串中获取哈希值?
我想做一些方法,如:
public string HashThis(string value) { string hashResult = string.Empty; ... return hashResult; }
并称此方法如下:
string hash = HashThis("TechnologyIsCool");
之后有哈希像“5qazws”.
解决方法
使用
String.GetHashCode Method
public static void Main() { DisplayHashCode( "Abcdei" ); } static void DisplayHashCode( String Operand ) { int HashCode = Operand.GetHashCode( ); Console.WriteLine("The hash code for \"{0}\" is: 0x{1:X8},{1}",Operand,HashCode ); }