Possible duplicate:
Multiline string literal in C #
I probably don't ask the right Google questions to find my answer. I just want my code to be neat, without actually having a long line on one line. I want to go to the next line without breaking the line.
cmd.CommandText = "UPDATE players SET firstname = CASE id WHEN 1 THEN 'Jamie' WHEN 2 THEN 'Steve' WHEN 3 THEN 'Paula' END WHERE id IN (1,2,3)";
For example, I would like to split this into two lines without affecting the line. All help would be appreciated.
source share