For example I want to find the third element of this list by its index
List<Tuple<int, int>> list;
Random random = new Random();
list = new List<Tuple<int, int>>();
int i;
for (i = 0; i < 4; i++)
{
list.Add(new Tuple<int, int>(random.Next(0, 5), random.Next(0, 5)));
Console.WriteLine("[{0}]=[{1}]", list.Count, list.);
}
thanks for the help