Initially i have following code.
var list = new Dictionary<string, int>();
list.Add("abcd", 1);
list.Add("abc", 12);
list.Add("def", 14);
//Finding items on this list is simple.
var results = list.Where(p => p.Value.Equals("abc"));
Here comes my question.
If i have a list of search words, how to search those items in list. I don't want to use for loop for this. Is there any built-in functionality or I need to write an extension method?
List<string> searchList = new List<string>();
searchList.Add("abc") ;
searchList.Add("def") ;
Find all items in searchList in list