QuickTip: Comparing strings in c# ignoring case? ToLower() is not the answer.
When doing a code review I often see code comparing two strings where the developer wants the comparison to be case insensitive and chose to use ToLower() or ToUpper() and == to get the job done.…