Olá pessoal!
Alguém por favor, me ajude a ver porque estou a ter este output. System.Collections.Generic.List`1[System.String]
var nomes = new List<string>()
{
"Delcio",
"Hemerson",
"Celso",
"Emilio",
};
nomes.Sort();
foreach (var item in nomes)
{
Console.WriteLine($"Lista de nomes: {nomes}");
}
Console.ReadLine();
}
Output:
Lista de nomes: System.Collections.Generic.List`1[System.String]
Lista de nomes: System.Collections.Generic.List`1[System.String]
Lista de nomes: System.Collections.Generic.List`1[System.String]
Lista de nomes: System.Collections.Generic.List`1[System.String]