この例を見てください。
MessageBox.Show("You cannot create an incident and also provide a Case Number\nPlease choose one or the other");
このように2行にしたいのですが、 + 演算子はありません
MessageBox.Show("You cannot create an incident and also provide a Case Number\n" +
"Please choose one or the other");
しかし、「文字列を連結せずにできるエスケープ文字はありますか?」と思っていました。