Skip to content

Instantly share code, notes, and snippets.

@uqmessias
Last active May 17, 2016 18:14
Show Gist options
  • Save uqmessias/7a97405ad8afa15a0c848258abe70ede to your computer and use it in GitHub Desktop.
Save uqmessias/7a97405ad8afa15a0c848258abe70ede to your computer and use it in GitHub Desktop.
private IEnumerable<string> nomes = new List<string>(){ "Uilque", "Lucas", "Luiz", "João", "Pedro", "Antônio" };
public IEnumerable<string> NomesGrandesEmCaixaAltaOrdenados()
{
var nomesGrandesEmCaixaAlta = nomes.Where(n => n.Length > 5)
.OrderBy(n => n)
.Select(n => n.ToUpper());
return nomesGrandesEmCaixaAlta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment