下一行继续代码
本文关键字:一行 继续 代码 | 更新日期: 2023-09-27 18:04:05
if (some condition) ||
(some other condition)
{
// do something
}
上面的格式不起作用。invalid expression "||"
说。
c#中的
if
语句需要完全包含在一组括号中。在你的两个||
ed表达式周围添加另一组,这将工作得很好,甚至在两行。
if ((some condition) ||
(some other condition))
{
// do something
}
您缺少if
语句的外部括号。例如
if ((some condition) || (some other condition))
{
// do something
}
你的括号是关闭的,应该是:
if ((some condition) ||
(some other condition))
{
// do something
}