Is there any problem with having a switch case consisting only of 'break;' if it is intended that this value should do nothing?
Code:
switch (x)
{
case 0:
DoSomething0();
break;
case 1:
break;
case 2:
DoSomething2();
break;
}