Could string comparisons really differ based on culture when the string is guaranteed not to change?
Absolutely. Per MSDN (http://msdn.microsoft.com/en-us/library/d93tkzah.aspx), This method performs a word (case-sensitive and culture-sensitive) search using the current culture. So you may get different results if you run it under a different culture (via regional and language settings in Control Panel). In this particular case, you probably won’t have a problem, but throw an i in the … Read more