I want use the metod public T Find (Predicate<T> match) to find an string in myList.
But I have no idea how can I find a string as a parameter.

I know only this way:
List<string> mylist = myList.FindAll(demo);


Is this way possible:
List<string> mylist = myList.FindAll(demo(object x));