Is there any tool to convert multiline text for Visual Studio 2008/2005?
- by Yiannis Mpourkelis
Is there any tool that will convert a multiline text, to a compatible multiline string for Visual Studio 2008/2005?
For example:
line1
line2
line3
line4
Should become:
"line1" & _
"line2" & _
"line3" & _
"line4"