I want to be able to check if the string contains all the values held in the list; So it will only give you a \'correct answer\' if you have all the \'key words\' from the l
This should help:
string text = "Psychology is the study of mental process and behaviour of humans"; bool containsAllKeyWords = KeyWords.All(text.Contains);