c# case 2 conditions code example
Example: can you have multiple statement in a case c#
switch (value)
{
case 1: case 2: case 3:
// Do Something
break;
case 4: case 5: case 6:
// Do Something
break;
default:
// Do Something
break;
}