I have some kind of ULR object list like below
List<myUrl> urls = new List<myUrl>();
myUrl is a class that contains 4 field and all of them string.
in this list I want to find items does not contain another given list of values
List<myUrl> result = urls.FindAll(
different_from_list_of_values condition;
);
how can I do that?