switch (value)
{
case 1:
// Some task
break; // Breaks are required in C#.
case 2:
case 3:
break;
default: // If no other case is matched.
}