我有一个字符串数组列表。我通过迭代创建了一个新的字符串数组并尝试将其放入列表中,但是当我使用包含函数时它不会检查它是否存在,而是插入重复项。
List<string[]> possibleColumnValues = new List<string[]>();
while(true){
string[] rArr = new string[5];
//some code to populate the string goes here
if (!possibleColumnValues.Contains(rArr){
{
possibleColumnValues.Add(rArr);
}
}