Is there a shorter way of writing something like this:
if(x==1 || x==2 || x==3) // do something
Wha
You could achieve this by using the List.Contains method:
if(new []{1, 2, 3}.Contains(x)) { //x is either 1 or 2 or 3 }