using System;
using System.Collections.Generic;
using System.Linq;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] arr = new string[]
{
"c#",
"java",
"c++",
"c"
};
List<string> list = arr.ToList();
foreach (string s in list)
Console.WriteLine(s);
}
}
}
/*
run:
c#
java
c++
c
*/