Found this thread when I wanted to find out if a collection does not contain one object but I do not want to check that all objects in a collection match the given criteria. I ended up doing a check like this:
var exists = modifiedCustomers.Any(x => x.Key == item.Key);
if (!exists)
{
continue;
}