我如何将这个三元表达式转换为if else语句?

时间:2017-04-18 05:18:13

标签: c# ternary-operator

我试图找到一种更简单的方法将这个三元表达式转换为if else表达式。

Account account = selection != 1 ? (Account)customer.Saving : (Account)customer.Checking;

1 个答案:

答案 0 :(得分:0)

你可以写:

Account account;
if(selection != 1)
{
    account= (Account)customer.Saving
}
else{
    account= (Account)customer.Checking;
}