数组中存在重复元素,需要把重复的元素去除掉,可以使用以下的方法进行处理。
private void button1_Click(object sender, EventArgs e)
{
List<string> tt = new List<string>() { "abc", "test", "123", "abc", "test","123" };
int count=tt.Count;
for (int i = 0; i < tt.Count; i++)
{
for (int j = i+1; j < tt.Count; j++)
{
if (tt[j]== tt[i])
{
tt.RemoveAt(j);
count=tt.Count;
j--;
}
}
}
}