If i have an if statement, for example:

VB Code:
  1. If x = 1 then
  2. Static bob as String = "hello"
  3. ElseIf
  4. Static joe as String = "hello2"
  5. Else
  6. Static mike as String = "hello3"
how would i check which ones it had done if i had a different value for x three times. like, x was 1,1,and 3, so joe would never be static'ed. how would i check to see if bob was static'ed, joe was static'ed, and mike was static'ed?