Tagged Questions

7
votes
6answers
474 views

C# IDisposable question

I have the following code example: public interface IRepository { // Whatever } public class SampleRepository : IRepository { // Implements 'Whatever' } public class NHibernateRepository : ...
3
votes
5answers
404 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
2k 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 ...
1
vote
6answers
312 views

C# disposable question

Would the garbage collector automatically free the unmanaged resources (whatever, actually) associated with some IDisposable instance if, for example, I forgot to write using statement? Obviously, I ...
0
votes
2answers
50 views

creating and terminating a thread contained in a collection

I have a custom collection (a thread-safe ObservableQueue). I implemented the business logic inside the collection class (i.e. dequeue the items one by one and expose them to the outside). This is ...
0
votes
1answer
264 views

Does this implementation of the Entity Framework leaks memory?

I just can't make out if the entity context is disposed in the usage flow when used in a using statement in a web application or a console application. Thanks! using System; using System.Web; ...