I want to achieve the following functionality using LINQ.
Case 1:
listOfStrings = {"C:","D:","E:"}
myString = "C:\Files"
Output: True
Case 2:
listOfStrings = {"C:","D:","E:"}
myString = "F:\Files"
Output: False
|
|
or slightly more verbose (but easier to understand):
|
|||||
|
|
You can use the Any extension method:
|
|||
|
|
|
Try this:
If you know that it should be at the start of the string, then:
EDIT Marc's solution is nicer :) |
||||
|
|