如何创建简单的哈希值?例如,我有字符串“TechnologyIsCool”以及如何从此字符串中获取哈希值?
我想做一些方法,如:
public string HashThis(string value)
{
string hashResult = string.Empty;
...
return hashResult;
}
并将此方法称为:
string hash = HashThis("TechnologyIsCool");
之后就像“5qazws”那样哈希。
答案 0 :(得分:12)
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 );
}
答案 1 :(得分:6)
使用GetHashCode();
public string HashThis(string value)
{
return hashResult = value.GetHashCode();
}
答案 2 :(得分:2)
不,你不能使用String.GetHashCode(),因为这并不保证每次都在同一个字符串上返回相同的哈希值。