using System.Collections.Generic;
namespace ListCSharpExample
public class ListCSharpExample
public static void Main()
List<char> lst = new List<char> { 'a', 'b', 'c' };
ShowList("Initial list, followed by lst.Add('d'); lst.Add('e');", lst);
ShowList("lst.Insert(0,'n');", lst);
lst.Insert(lst.Count, 'x');
ShowList("lst.Insert(lst.Count,'x');", lst);
lst.InsertRange(2, new List<char> { '1', '2', '3', '4' });
ShowList("lst.InsertRange(2, new List<char>{'1', '2', '3', '4'});", lst);
ShowList("lst.RemoveAt(0);", lst);
ShowList("lst.Remove('c');", lst);
ShowList("lst.RemoveRange(1, 2);", lst);
public static void ShowList<T>(string explanation, List<T> list)
Console.WriteLine(explanation);
Console.Write("{0, 3}", el);
Console.WriteLine(); Console.WriteLine();