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

Posted 晴天天晴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#判断页面中的多个文本框输入值是否有重复的实现方法相关的知识,希望对你有一定的参考价值。

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

//说明没有重复

以上是关于C#判断页面中的多个文本框输入值是否有重复的实现方法的主要内容,如果未能解决你的问题,请参考以下文章

c#中的文本框里怎么判断输入的内容是啥类型

C#怎么判断文本框输入的是否数字组成

我想用for循环判断一下页面中多个文本框是不是为空怎么做?

C# winform 文本框里,怎么设置数字的格式?

利用selenium自动化实现搜索框输入内容

判断多行文本框是否重复输入