3
Staff I have a: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 mine Txtfiltro, I would like to filter all items that do not have the word I put in Txtfiltro and if possible put more than one word.
Example bring all items that does not contain: pineapple, strawberry.
You will put all these words in the textbox?
– Jéf Bueno
Managed to solve the problem?
– Daniel Dutra