猿问

有什么好的方法吗?可以解决下面的情况的?

List<string> listApp = new List<string>();
foreach (GridViewRow gvr in this.gvAppNot.Rows)
{
CheckBox chkCurrent = gvr.FindControl("chkCurrent") as CheckBox;
if (chkCurrent.Checked == true)
{
listApp.Add(gvr.Cells[2].Text + ","); //存类型
}
}
怎么比较listApp中的所有项是否一致?
添加的项包括:a1、a2、a3 我判断里面存的各项是否一致,如果不一致我需要提示用户。

素胚勾勒不出你
浏览 62回答 1
1回答

慕神8447489

用Contains函数做比较:listApp.Contains("")
随时随地看视频慕课网APP
我要回答