C# list<string> 中的项怎么比较是否一致?
List<string>listApp=newList<string>();foreach(GridViewRowgvrinthis.gvAppNot.Rows){Che...
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 我判断里面存的各项是否一致,如果不一致我需要提示用户。有什么好的方法吗? 展开
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 我判断里面存的各项是否一致,如果不一致我需要提示用户。有什么好的方法吗? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询