using System;
using System.Collections.Generic;
public class Example
{
public static void Main()
{
List myList = new List();
myList.Add("A");
myList.Add("B");
myList.Add("C");
Console.WriteLine();
foreach (string d in myList)
{
Console.WriteLine(d);
}
Console.WriteLine(myList.IndexOf("A"));
Console.WriteLine(myList.IndexOf("B", 3));
Console.WriteLine(myList.IndexOf("B", 2, 2));
}
}