Difference Between Invariantculture and Ordinal String Comparison
When Comparing Two Strings in C# for Equality, What Is the Difference Between Invariantculture and Ordinal Comparison? 5 9 Answers Invariantculture Uses a...
When comparing two strings in c# for equality, what is the difference between InvariantCulture and Ordinal comparison?
9 Answers
Must Read
InvariantCulture
Uses a "standard" set of character orderings (a,b,c, ... etc.). This is in contrast to some specific locales, which may sort characters in different orders ('a-with-acute' may be before or after 'a', depending on the locale, and so on).