With Option Strict On :
Option Strict On
Dim theLetterA As Char = "A"
returns an error about converting string "A" to Char .
"A"
Char
What is the syntax for inputting a Char literal?
A character literal is entered using a single character string labeled C
C
Dim theLetterA As Char = "A"C
I would use CChar. For example:.
Dim theLetterA As Char = CChar("A")
For more information on CChar, check out the MSDN website at https://msdn.microsoft.com/en-us/library/s2dy91zy.aspx .