I have a question that I hope someone here can answer.
I was attempting to assign a string to a string variable and I accidently put a + in front of the string.
Dim s as String = +”Hello World”
I got the following compile error: "Conversion from string "" to type 'Double' is not valid."
My question is why did the + cast the string to a double.
Thanks
I was attempting to assign a string to a string variable and I accidently put a + in front of the string.
Dim s as String = +”Hello World”
I got the following compile error: "Conversion from string "" to type 'Double' is not valid."
My question is why did the + cast the string to a double.
Thanks