I want to do a performance test on how fast an ArrayList(System.Collections - C#) can insert an item at the beginning.
I've opened a file for reading lines of data from, set up a Stopwatch and also created an ArrayList to add items to(as follows):
Stopwatch watchTime = new Stopwatch();
Double totalTime = 0;
using (StreamReader readText = new StreamReader("data.txt"))
{
String line;
Int32 counter = 0;
while ((line = readText.ReadLine()) != null)
{
}
}
I use the counter to keep track of how many items i'm entering into the ArrayList.
Within the while loop i have the following:
watchTime.Start();
theList.Insert(0, line);
watchTime.Stop();
Double time = watchTime.Elapsed.TotalMilliseconds;
totalTime = totalTime + time;
Console.WriteLine(time);
watchTime.Reset();
++counter;
Is this a correct way of checking how fast inserting items into the beginning of the ArrayList occurs??
I made another program that does the exact same thing - however using a Dictionary. To my surprise, the time it takes for this ArrayList to insert items is much longer than the amount of time the Dictionary takes. Why is this happening?
ArrayList. It's been deprecated since .NET 2.0. – John Saunders Oct 23 '11 at 7:24