我有一个字符串列表,我需要检查该列表中是否存在特定项目(不是一个项目)。
List<string> strings = new List<string>() {"one","two","three","four","five" };
我需要找出“一”和“三”是否在该列表中。是否可以使用一个 linq 查询?
谢谢您的帮助!
var valuesToCheck = new[] {"one", "three"};
bool isAllInList = valuesToCheck.All(s => strings.Contains(s));
var findMe = new List<string>() { "one", "three"};
List<string> strings = new List<string>() { "one", "two", "three", "four", "five" };
var result = findMe.All(f => strings.Any(s => f == s));