Tagged Questions
7
votes
3answers
344 views
ServiceContainer, IoC, and disposable objects
I have a question, and I'm going to tag this subjective since that's what I think it evolves into, more of a discussion. I'm hoping for some good ideas or some thought-provokers. I apologize for the ...
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 ...
1
vote
6answers
310 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
1answer
261 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;
...