HOW TO:產生多行字串常值 (Visual Basic)
更新:2007 年 11 月
這個範例建構長度為三行的字串常值 (String Literal)。
範例
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 所定義] 中。如需詳細資訊,請參閱 HOW TO:在您的程式碼中插入程式碼片段 (Visual Basic)。
編譯程式碼
這項範例需要:
- 指定 System 命名空間的 Imports 陳述式 (Statement)。如需詳細資訊,請參閱 Imports 陳述式 (.NET 命名空間和型別)。