Are .NET string functions like IndexOf(\"blah\") case sensitive?
IndexOf(\"blah\")
From what I remember they aren\'t, but for some reason I am seeing bugs in my app where the
.NET string comparisons are indeed case sensitive. You could use things like ToUpper() to normalize things before comparing them.