C#斷定頁面中的多個文本框輸出值能否有反復的完成辦法。本站提示廣大學習愛好者:(C#斷定頁面中的多個文本框輸出值能否有反復的完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#斷定頁面中的多個文本框輸出值能否有反復的完成辦法正文
本文實例講述了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#法式設計有所贊助。