string.GetHashCode() uniqueness and collisions

Viewed 9369

Given two different strings, is it always the case that s.GetHashCode() != s1.GetHashCode()?

Is it the case that the number of distinct integers is less than the number of distinct strings?

3 Answers
Related