Is there a shorter way of writing something like this:
if(x==1 || x==2 || x==3) // do something
What I'm looking for is something like this:
if(x.in((1,2,3)) // do something
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
}