I recently had to use my "String converter" to convert 20 lines of text to a single line of "VB .Net String coding". For example:

Code:
This is line one
This is line two
This is line three "with extra stuff"

Empty line above me
To:
Code:
"This is line one" & vbCrLf & "This is line two" & vbCrLf & "This is line three " & chr(34) & "with extra stuff" & chr(34) & vbCrLf & vbCrLf & "Empty line above me"
What is the best way to represent these types of Strings? For example, if you have to display a long message or just a label with information that changes. I was thinking of some sort of text file collection, but it is a little useless to have 100 text files of information of 5-6 lines...

How do you guys solve your "long Strings" issue?