Take this example.
MessageBox.Show("You cannot create an incident and also provide a Case Number\nPlease choose one or the other");
I would like to have it on two lines like this, but without the + operator
MessageBox.Show("You cannot create an incident and also provide a Case Number\n" +
"Please choose one or the other");
But I was wondering "is there some escape character where I can do it without the string concatenation?"