using System;
using System.Collections.Generic;
class Program
{
static void Main() {
List<string> lst = new List<string>() { "c#", "c", "c++", "java" };
String[] str = lst.ToArray();
Array.ForEach(str, s => Console.Write(s + " "));
}
}
/*
run:
c# c c++ java
*/