如何用多个条件写出速记if语句

时间:2014-08-05 14:56:40

标签: c# if-statement

例如我想写:

txt1.Text=="A" || txt2.Text="A" ? return true : return false

我知道如何处理一个条件,但有两个我不知道。

txt2.Text =“A”而不是txt2.Text ==“A”这不是我的意思。

我的问题是我如何为这个具体的条件添加一个条件。 是的,我知道如何使用if。

在另一个中使用的常规方式是:

txt1.Text == “A”? return true:return false

我希望改进它。

我写的代码不起作用。

谢谢

2 个答案:

答案 0 :(得分:5)

您在寻找

吗?
return txt1.Text == "A" || txt2.Text == "A";

答案 1 :(得分:0)

我认为这就是你要找的东西。

if(txt1.Text == "A" || txt2.Text == "A") //checks if txt1 is A OR txt2 is A
{
return true;
}
else
{
return false;
}