This is my code. I have a queue that gets images. Images are retrieved in a loop, this means that queueForImages.count always increases. So when I try to run this program sometimes it throws this exception and sometimes not. I mean ive exited the application and now ive run it again. It will show this exception sometimes and sometimes not. I am new to threads. You can say I am a layman to know threads. So what am i missing? Do I have to dispose the thread or something before exiting application?
static void Main(string[] args)
{
Program obj = new Program();
obj.handlerForImageBuffer();
}
void handlerForImageBuffer()
{
Bitmap mp = (Bitmap)Bitmap.FromFile(@"path.bmp");
Thread imageThread = new Thread(new ThreadStart(processImages));
for ( ; ; )
{
Console.WriteLine("Count: " + queueForImages.Count);
if (queueForImages.Count == 10)
{
queueFlag = true;
imageThread.Start();//Here comes the exception
Console.WriteLine("Q HAS 10 Elements");
}
queueForImages.Enqueue(Process(mp));//Same image is added for infinite times, just for the sake of testing.
}
}