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 ...
1
vote
6answers
310 views
How does .NET compiler compare two strings?
string a="I am comparing 2 string";
string b="I am comparing 2 string";
if(a==b)
return true;
else
return false;
How does a .NET compiler compare two strings? Does a string work like a ...