我有一个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