I have this code:
For each c as char in "Hello World"
Select Case c
Case "h"
DoSomething()
Case "e"
DoSomething()
End Select
Next
Why can't I write like this:
Case "h" Or "e"
DoSomething()
It says that "Long" values ββcannot be converted to "Char"
How to complete this task?
source
share