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

C#'s switch() statement is case-sensitive. Is there a way to toggle it so it becomes case-insensitive?

==============================

Thanks, But , I don't like these solutions;

Because case conditions will be a variable , and I don't know if they ALL are UPPER or lower.

share|improve this question
1  
possible duplicate of How to make the C# Switch Statement use IgnoreCase – brendan May 13 '11 at 2:42
1  
'case conditions will be variable' - I thought they are compile time constant expressions! – YetAnotherUser May 13 '11 at 4:32

3 Answers

Yes - use ToLower() or ToLowerInvariant() on its operands. For example:

switch(month.ToLower()) {
    case "jan":
    case "january": // These all have to be in lowercase
         // Do something
         break;
}
share|improve this answer

Convert your switch string to lower or upper case beforehand

switch("KEK".ToLower())
{
 case "kek":
  CW("hit!");
  break;
}
share|improve this answer

You can do something like this

switch(yourStringVariable.ToUpper()){
    case "YOUR_CASE_COND_1":
     // Do your Case1
    break;

    case "YOUR_CASE_COND_2":
    // Do your Case 2
    break;

    default:
}
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.