This is a nice one. The Select Case statement within VB.Net is very powerful.
Sure there is the standard
Select Case Role
Case "Admin"
'Do '//Do X
Case "Tester"
'Do '//Do Y
Case "Developer"
'Do '//Do Z
Case Else
'Exception '//Exception case
End Select
But there is more...
You can do ranges:
Select Case Amount
Case Is < 0
'What!!
'//What!!
Case 0 To 15
Shipping = 2.0
Case 16 To 59
Shipping = 5.87
Case Is > 59
Shipping = 12.50
Case Else
Shipping = 9.99
End Select
