Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created October 17, 2016 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmussak/5b50ffd410187b109c7a0e43ceb64178 to your computer and use it in GitHub Desktop.
Save vmussak/5b50ffd410187b109c7a0e43ceb64178 to your computer and use it in GitHub Desktop.
public IEnumerable<Cliente> ClientesMasculinosComMaisDeVinteAnos(IEnumerable<Cliente> clientes)
{
//Reparem no uso da expressão Lambda
return clientes.Where(c => c.Idade > 20 && c.Sexo == "Masculino");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment