For the following block of code:
For I = 0 To listOfStrings.Count - 1 If myString.Contains(lstOfStrings.Item(I)) Then Return True End If Next
Old question. But since VB.NET was the original requirement. Using the same values of the accepted answer:
VB.NET
listOfStrings.Any(Function(s) myString.Contains(s))