I have:
var results = response.Xml.Descendants("M").Where(foo => foo.Value.Contains("john"));
How do I change this to be:
List<string> ValidUsers = new List<string>();
ValidUsers.Add("John");
ValidUsers.Add("Smurf");
var results = response.Xml.Descendants("M")
.Where(foo => foo.Value.Contains(ValidUsers));
Figured it out: