Switch statement humor

Today during a code review session at a client, we spoke about using the switch statement in C#, instead of the if statement. A few hours later I got the reply that they were now using the switch statement.

if (Switch == 1)

{

        // do something here

}

else if (Switch == 2)

{

        // do something else

}

Funny 🙂