作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
举个例子。
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");
但我想知道“是否有一些转义字符可以让我在没有字符串连接的情况下做到这一点?”
最佳答案
您可以这样做(注意您不能缩进第二行,否则缩进将成为字符串的一部分):
MessageBox.Show(@"You cannot create an incident and also provide a Case Number
Please choose one or the other");
但实际上您不必担心将 +
字符串连接用作 the compiler will optimize it away .
关于c# - 有没有办法在 VS2010 中强制换行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13803881/
我是一名优秀的程序员,十分优秀!