A
Alan Roberts
In VB6 I could do the following
Select Case Right$(Text, 1)
Case "a","b"
do this
Case "c","d"
do this
Case else
do this
End Select
can I have multiple items per case in c#?
Thanks
Alan
Select Case Right$(Text, 1)
Case "a","b"
do this
Case "c","d"
do this
Case else
do this
End Select
can I have multiple items per case in c#?
Thanks
Alan