How to create simple hash value? For example I have string "TechnologyIsCool" and how to have hash value from this string?
I want to do some method like:
public string HashThis(string value)
{
string hashResult = string.Empty;
...
return hashResult;
}
and call this method like:
string hash = HashThis("TechnologyIsCool");
and after that have hash like "5qazws".