使用条件运算符分配值

时间:2017-10-12 08:58:34

标签: c# asp.net

我有一个ASP.net webforms应用程序。当我加载页面时,我以这种方式绑定DropDownLists:

ListItem cItem = DropDownList1.Items.FindByText("foo");
if(cItem!=null)
{
    cItem.Selected = true;
}

问题:有没有办法用条件运算符?

DropDownList1.Items.FindByText("foo")?.Selected = true; //odes not work

0 个答案:

没有答案