我试图找到一种更简单的方法将这个三元表达式转换为if else表达式。
Account account = selection != 1 ? (Account)customer.Saving : (Account)customer.Checking;
答案 0 :(得分:0)
你可以写:
Account account;
if(selection != 1)
{
account= (Account)customer.Saving
}
else{
account= (Account)customer.Checking;
}