show/hide this revision's text 2 added 5 characters in body; added 10 characters in body

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
show/hide this revision's text 1

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 X
  Case "Tester"
         'Do Y
  Case "Developer"
         'Do Z
  Case Else
       'Exception case
End Select

But there is more...

You can do ranges:

Select Case Amount
 Case Is < 0
    '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