fork download
  1. using static System.Console;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class Program {
  6. public static void Main() {
  7. var selecoes = new List<string>() { "USA", "Brasil", "Itália", "França" };
  8. var melhorSelecao = from string s in selecoes
  9. where s == "Brasil"
  10. select s;
  11. foreach (var item in melhorSelecao) WriteLine(item);
  12. }
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/229798/101
Success #stdin #stdout 0.02s 17004KB
stdin
Standard input is empty
stdout
Brasil