Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From what I read so far, it sounds like these StringComparison types are meant to differ in how they do sorting of strings, if so, does that mean that it doesn't matter which StringComparison you use when doing an equality comparison?

string.Equals(a, b, StringComparison....)

Extra credit: does it make a difference to the answer if we compare OrdinalIgnoreCase and InvariantCultureIgnoreCase? What is the answer then?

Please provide supporting argument and/or references.

share|improve this question
2  
Culture matters for case invariant comparisons since some languages have strange upper/lowercase rules. For example Turkish with it's two lower and two upper case "i"s, which are matched cross-over. – CodesInChaos Jan 12 '11 at 22:15

3 Answers

up vote 1 down vote accepted
  1. I think this is a great question, but hasn't been properly answered with regard to the case-sensitive equality tests.

  2. I cannot find any evidence of difference in results WHEN NOT IGNORING CASE testing for equality. It seems that StringComparison.CurrentCulture, StringComparison.InvariantCulture, and StringComparison.Ordinal would only give a different result to sorting order, meaning that the use of non-default StringComparison type when doing case-sensitive equality testing is unnecessary.

share|improve this answer

For the extra credit question

share|improve this answer

Well, it certainly matters. When you use an "ignore case" equality comparison then you're invoking a fairly massive chunk of code in the .NET framework that's aware of how casing rules work in the current culture. The rules of which are very interesting to a former-postage-stamp collector geek like me, there are some pretty odd-ball rules depending where you look. The Turkish I problem is famous, the Unicode dudes had to make an explicit exception for them.

It isn't actually code btw, it's lookup tables. Interesting in itself because it requires MSFT to maintain the /linkres command line option for the C# compiler. A compile option you cannot use in your own projects. It's solely there to get mscorlib to be able to find the .nlp files, the conversion tables for culture rules. Stored in the same subdirectory of the GAC as mscorlib.dll, the effect of the compile option.

But I digress. It stands to reason that StringComparison.OrdinalIgnoreCase is a wee bit quicker than StringComparison.InvariantCultureIgnoresCase. Just because 'invariant' means USA, home of MSFT. Hard to measure, this clocks in at nanoseconds. StringComparison.CurrentCultureIgnoreCase hits those translation tables. Dead slow when you first use it, just slower when you use them later.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.