using static System.Console;
using System.Collections.Generic;
public static void Main() {
var selecoes = new List<string>() { "USA", "Brasil", "Itália", "França" };
var melhorSelecao = from string s in selecoes
foreach (var item in melhorSelecao) WriteLine(item);