おそらく基本的な質問ですが、switch case ステートメントで複数の引数を使用するコードを減らしたいと思います。可能?正しい構文?
switch (myInteger){
case (1): //here I would like to apply multiple arguments as case (1 || 3 || 5)
<#statements#>
break;
case (2):
<#statements#>
break;
default:
break;