gpt4 book ai didi

c# - C# 中的 OR 运算符

转载 作者:太空狗 更新时间:2023-10-29 23:53:53 26 4
gpt4 key购买 nike

我能做到吗

if (a == "b" || "c")

代替

if (a == "b" || a== "c")

?

最佳答案

嗯,最接近的是:

switch (a) {
case "b":
case "c":
// variable a is either "b" or "c"
break;
}

关于c# - C# 中的 OR 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/826081/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com