以下 IF 语句检查 ListexceptionCM 是否包含下拉列表的选定值。
List<string> ExceptionCM = new List<string>;
if(exceptionsCM.Any(s => ddl_model.SelectedValue.Contains(s)) )
{
//do something
}
List<string> ExceptionPM;
List<string> ExceptionDL;
List<string> ExceptionCL;
我想更改语句,所以我可以检查 4 列表是否不包含下拉列表的选定值。你可以帮帮我吗 ?