I have a personal: List<Grupos> lista = new List<Grupos>();
And I have this code
var matches = lista.FindAll(x => x.Nome_Grupo.ToLower().Contains(txtFiltro.Text)).ToList();
To filter only words from my TxtFilter , I'd like to filter all items that do not have the word that I put in TxtFilter and if possible put more than one word.
Example bring all items that do not contain: pineapple, strawberry.