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 我判断里面存的各项是否一致,如果不一致我需要提示用户。
慕神8447489
相关分类