从 C# 7.0 开始,因为 case 语句不需要互相排斥,因此可以添加 when
子句来指定必须满足的附加条件使 case 语句计算为 true。 when
子句可以是返回布尔值的任何表达式。
1 | switch (totalPrice) |
从 C# 7.0 开始,因为 case 语句不需要互相排斥,因此可以添加 when
子句来指定必须满足的附加条件使 case 语句计算为 true。 when
子句可以是返回布尔值的任何表达式。
1 | switch (totalPrice) |
评论