In C I use "1st line 1\n2nd line"
for a newline, but what about VB? I know "1st line" & VbCrLf & "2nd line"
but its too verbose, what is the escape char for a newline in VB?
I want to print
1st line
2nd line
I tried using \n
but it always outputs this no matter how many times I run the compiler
1st line\n2nd line
Any ideas?