Tagged Questions

3
votes
5answers
399 views

C# disposable objects

Are there some advices about how I should deal with the IDisposable object sequences? For example, I have a method that builds a IEnumerable<System.Drawing.Image> sequence and at some point I ...
3
votes
6answers
1k views

Finalizers and Dispose

I've got a class named BackgroundWorker that has a thread constantly running. To turn this thread off, an instance variable named "stop" to needs to be "true". To make sure the thread is freed when ...