Suppose that we have a list of strings like
\"A\", \"B\", \"C\", \"D\", \"E\", \"F\"
Now I\'d like to search for a sub-list of
Not a good general or efficient answer, but concise - as it is a list of strings / characters, you could do a simple string.Join() and check for the substring:
string.Join()
int p = string.Join("", list).IndexOf("DE");