Tagged Questions
6
votes
3answers
1k views
Why does string.Compare seem to handle accented characters inconsistently?
If I execute the following statement:
string.Compare("mun", "mün", true, CultureInfo.InvariantCulture)
The result is '-1', indicating that 'mun' has a lower numeric value than 'mün'.
However, if I ...