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