using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
{
List<string> list = new List<string>{"a", "b", "c", "d", "e"};
int index = 2;
list.RemoveAt(index);
list.ForEach(Console.WriteLine);
}
}
/*
run:
a
b
d
e
*/