Is there any tool to convert multiline text for Visual Studio 2008/2005?
Posted
by Yiannis Mpourkelis
on Stack Overflow
See other posts from Stack Overflow
or by Yiannis Mpourkelis
Published on 2010-05-24T20:08:34Z
Indexed on
2010/05/24
20:11 UTC
Read the original article
Hit count: 252
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"
© Stack Overflow or respective owner