ついでに言うとこういう書き方もあり
switch (value)
{
case 1 or 2 or 3:
// ここに処理を書く
break;
default:
// デフォルトの処理を書く
break;
}