登录  
 加关注
   显示下一条  |  关闭
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!立即重新绑定新浪微博》  |  关闭

扶红星的博客

生活本无味,尝试的多了也便五味俱全了。

 
 
 

日志

 
 

C#判断页面中的多个文本框输入值是否有重复方法  

2013-05-23 23:45:09|  分类: 知识梳理 |  标签: |举报 |字号 订阅

  下载LOFTER 我的照片书  |

List<string> list = new List<string>();//首先定义一个泛型数组

//这里假如说有四个文本框

string mainseat = this.textBox1.Text;
string nextseat = this.textBox2.Text;
string storeseat1 = this.textBox3.Text;
string storeseat2 = this.textBox4.Text;
 if (mainseat != "")
 {
     list.Add(mainseat);
 }
  if (nextseat != "")
  {
      list.Add(nextseat);
  }
 if (storeseat1 != "")
  {
      list.Add(storeseat1);
  }
  if (storeseat2 != "")
   {
       list.Add(storeseat2);
   }     
  if (list.Distinct().Count<string>() != list.Count)//排查数组中是否有重复元素
   {

       //此时说明有重复
   }           

  else

       //说明没有重复
  评论这张
 
阅读(448)| 评论(0)

历史上的今天

评论

<#--最新日志,群博日志--> <#--推荐日志--> <#--引用记录--> <#--博主推荐--> <#--随机阅读--> <#--首页推荐--> <#--历史上的今天--> <#--被推荐日志--> <#--上一篇,下一篇--> <#-- 热度 --> <#-- 网易新闻广告 --> <#--右边模块结构--> <#--评论模块结构--> <#--引用模块结构--> <#--博主发起的投票-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2018