C# 简写 If...El
简写 If...Else(三元运算符)
还有一个简写 if else,称为 三元运算符 因为它由三个操作数组成。它可以用来用一行代码替换多行代码。它通常用于替换简单的 if else 语句:
句法
variable = (condition) ? expressionTrue : expressionFalse;
不要这样写:
例子
int time = 20;
if (time < 18)
{
Console.WriteLine("Good day.");
}
else
{
Console.WriteLine("Good evening.");
}
你可以简单地写:
例子
int time = 20;
string result = (time < 18) ? "Good day." : "Good evening.";
Console.WriteLine(result);