如何:生成多行字符串 (Visual Basic)
更新:2007 年 11 月
此示例构造长度为三行的字符串。
示例
Dim MyString As String
MyString = "This is the first line of my string." & VbCrLf & _
"This is the second line of my string." & VbCrLf & _
"This is the third line of my string."
此代码示例也可用作 IntelliSense 代码段。在代码段选择器中,它位于“数据类型 -- 由 Visual Basic 定义”中。有关更多信息,请参见如何:在代码中插入代码段 (Visual Basic)。
编译代码
此示例需要:
- 一个指定 System 命名空间的 Imports 语句。有关更多信息,请参见 Imports 语句(.NET 命名空间和类型)。