I have to search a list of strings in CityList and if it contains all search strings then it should return true otherwise false.
When i search "London","Dallas" against CityList it should return false,because "Dallas" is missing in CityList.
var CityList=new string[] { "London","Paris","Houston","Mexico","Budapest"}
var search =new string[] {"London","Dallas"};
How to rewrite the following ?
var result = CityList.Select(c => c).ToList().FindAll(search.ToArray());