//linq bool b = listOfStrings.Any(s=>myString.Contains(s)); //shorter but less clear bool b = listOfStrings.Any(myString.Contains);