Are variables declared in a case statement local to that case statement -
For example, in the following code, is it safe to use z like this? Or is the compiler just placing z at the procedure scope?
Select Case x
Case 6
Dim z As Integer = 6
Case 7
Dim z As Integer = 7
End Select
