we can search for a dictionary, for example
var dictionary = new Dictionary<string,string>(); dictionary.Keys.Where( key => key.Contains("a")).ToList();
but it returns a list. I want linq to return true or false. so that will be the correct code to search for a dictionary with linq. please guide.
source share