Option Strict Conversion Problem
I am writing a program with Option Strict ON. I know if I were to turn it off my problem would be solved, however, I would like to understand.
When I write the following code I immediately get a blue underline beneath the second line of code. The message reads:
"Value type of 1-dimensional array of Char cannot be converted to Char"
Dim characterarray As Char
characterarray = New Char(5) {}
|