Breaking a VB.NET expression into multiple lines

You can break a VB.NET expression into multiple lines using the _ (underscore) character. For example:
{ "The result of 5 * 4 = " + _
 5 * 4 }
Each line must end with _ except the last one. It is not allowed to end a line in the middle of a string (i.e. between quotes). Each string must be terminated properly. You can concatenate two strings using the & operator. Like so:
{ "This string is broken " & _
 " into two lines " }
The resulting text will not contain a line break.