Multiline string literal in vb.net? [duplicate]
Possible Duplicate:
Multiline strings in VB.NET
How do you specify a multiple line string literal in V开发者_如何学运维isual Basic .NET?
You can do it in C#: Multiline String Literal in C#
This is not supported in VB.Net. The most common way is to do the following
Dim text = "First Line" & vbCrLf & _
"Second Line" & vbCrLf & _
"Third Line"
精彩评论