举这个例子。
MessageBox.Show("You cannot create an incident and also provide a Case Number\nPlease choose one or the other");
我想把它放在这样的两行上,但没有 + 运算符
MessageBox.Show("You cannot create an incident and also provide a Case Number\n" +
"Please choose one or the other");
但我想知道“是否有一些转义字符可以在没有字符串连接的情况下完成?”