I\'m using an Or statement in my case expression.
Even though I have a value within this range, it didn\'t find a match. Why not?
Example Code:<
JaredPar has it right but you can also use the To construct
Select Case 2 Case 0,1 Case 2 To 3 Console.WriteLine("Hit") End Select
This would be 0 or 1 do nothing, 2 or 3 print Hit...The To construct is a range...
Here's the MSDN