📅  最后修改于: 2023-12-03 15:37:40.297000             🧑  作者: Mango
有时我们需要检查一个元素是否存在于列表中。C#提供了对List
我们可以使用List
List<string> fruits = new List<string>() { "apple", "banana", "orange" };
bool existApple = fruits.Contains("apple"); // 返回true
bool existGrape = fruits.Contains("grape"); // 返回false
如果我们需要在另一个列表中查找元素是否存在,我们可以使用List
List<string> list1 = new List<string>() { "apple", "banana", "orange" };
List<string> list2 = new List<string>() { "banana", "grape", "peach" };
IEnumerable<string> commonFruits = list1.Intersect(list2); // 返回"banana"
但是,Intersect方法返回的是两个列表中共同存在的元素列表,而不是单个元素是否存在的布尔值。因此,我们需要将返回的列表转换为单个布尔值。我们可以使用Any方法。Any方法检查列表是否包含任何元素。如果列表不为空,则返回true,否则返回false。例如:
bool existBanana = list1.Intersect(list2).Any(); // 返回true
bool existGrape = list1.Intersect(list2).Contains("grape"); // 返回true
在C#中,我们可以使用List