Say for example I have a list as follows:
List<string> myList = new List<string>();
which contains:
item1
item 2
testing 123
How could I say:
"where list item contains the value "123" return that item in full"
hence the output result would be:
testing 123
or