Multiline strings in VB.NET
Asked 07 September, 2021
Viewed 2.2K times
  • 61
Votes

Is there a way to have multiline strings in VB.NET like Python

a = """
multi
line
string
"""

or PHP?

$a = <<<END
multi
line
string
END;

Of course something that is not

"multi" & _
"line

21 Answer