我有一個字符串數組列表。我通過迭代創建了一個新的字符串數組,並嘗試將其放入列表中,但它不檢查當我使用contains函數時是否存在,而是插入重複項。檢查字符串數組是否存在於字符串列表中
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);
}
}