7 Answers. The simple answer is No. You cant use it like that . Switch works with single expression.
Read moreWhat is a switch case C#?
Advertisements. A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each switch case .
Read moreCan we use or operator in switch case in C#?
There is no such operator in switch statements . The switch statement operates on a single variable which is a value type or a string.
Read moreCan we use or operator in switch case?
The switch-case construct is pretty similar to an if-else statement, you can use the OR operator in an if however .
Read moreCan Switch case be used for strings in C#?
The C# language allows you to switch on a string variable . The switch statement compares the String objects in its expression with the expressions associated with each case label as if it were using the String. equals method. Currently the switch statement is case-sensitive.
Read moreIs string allowed in switch case?
Strings in switch Yes, we can use a switch statement with Strings in Java .5 Tem 2019
Read moreCan I use string in switch case C?
No you can’t . The case labels of a switch need to be compile time evaluable constant expressions with an integral type. But int literals like ‘+’ satisfy that requirement.
Read more