Case clauses in Visual Basic are cool. You can load them up with all kinds of expressions and method calls, allowing you to fine-tune your criteria: Select Case patrons Case 1, 2 ' ----- Small table: ...
The following Visual Basic Select Case statement can't be represented in C# with a single switch statement: Dim Condition As Integer = 55 Select Case Condition Case 1, 3 To 5, 10, 12, 14, Is > 50 ...