VB Quark #5: C is for Char
Can you pick the problem with this code ? : Dim currentChar As Char For i = 0 To largenumber currentChar = getChar(i) If currentChar = "a" Then count += 1 End If Next The answer of course is the literal “a” is of type string, not of type Char. […]
Click here to read more »