using System;
using System.Linq;
using System.Collections.Generic;
using System.Collections;
public class Program
{
public static void Main()
var valores = new List<string> {"a", "b", "c"};
var msg = string.Join(", ", valores);
Console.WriteLine(msg);
}