stnkyminky
Programmer
VB
Dim foo as string = "This is a sample " & _
"of line continuation"
How would I accomplish this in C#? I've tried just using ( at the end of each line but I rcv and error.
string foo;
foo = "This is a sample ";
"of line continuation";
Scott
Programmer Analyst
<{{><
Dim foo as string = "This is a sample " & _
"of line continuation"
How would I accomplish this in C#? I've tried just using ( at the end of each line but I rcv and error.
string foo;
foo = "This is a sample ";
"of line continuation";
Scott
Programmer Analyst
<{{><