-2

如果我有以下...

List<string> listA = new List<string>();
listA.Add("a");
listA.Add("b");
listA.Add("c");
listA.Add("d");

List<string> listB = new List<string>();
listB.Add("b");
listB.Add("d");

我怎么知道 listA 是否拥有 listB 的一切?

4

4 回答 4

10

使用Enumerable.Except

bool allBinA = !listB.Except(listA).Any();

演示

于 2013-04-02T15:14:19.970 回答
2

你可以用原始(慢)的方式来确保

bool contains_all = true;

foreach(String s in listA) {
  if(!listB.Contains(s)) {
    contains_all = false;
    break;
  }
}

尽管这确实对数组中的每个元素执行了详尽的搜索

于 2013-04-02T15:14:18.493 回答
0

试试这个:

bool result = listB.Intersect(listA).Count() == listB.Count;

还有这个:

bool result2 = listB.Select(input => !listA.Contains(input)).Count() > 0;
于 2013-04-02T15:13:15.003 回答
0
bool result = false;

if (listB.Count>listA.Count) result =  listB.Intersect(listA).Count() == listB.Count;

else result =  listA.Intersect(listB).Count() == listA.Count;
于 2013-04-02T15:15:04.557 回答