StringUtility.GetPersistentHashCode method

Gets a hash code for the specified string; this hash code is guaranteed not to change in future.

public static int GetPersistentHashCode(this string? value)
parameter description
value The string to hash.

Return Value

A hash code for the specified string

Remarks

Based on SuperFastHash: http://www.azillionmonkeys.com/qed/hash.html

See Also