You need to use the string.Join to go through the list to actually get their values.
Console.WriteLine(string.Join(", ", list));
Source: https://docs.microsoft.com/en-us/dotnet/api/system.string.join
Exploration of Information, Communication and Technology
You need to use the string.Join to go through the list to actually get their values.
Console.WriteLine(string.Join(", ", list));
Source: https://docs.microsoft.com/en-us/dotnet/api/system.string.join