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