Tagged Questions
The disposable tag has no wiki summary.
7
votes
6answers
471 views
C# IDisposable question
I have the following code example:
public interface IRepository {
// Whatever
}
public class SampleRepository : IRepository {
// Implements 'Whatever'
}
public class NHibernateRepository : ...
7
votes
3answers
345 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
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 ...
1
vote
6answers
311 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 ...
1
vote
5answers
331 views
Finding disposable email addresses
I've been using undisposable.net's API to find disposable email addresses but noticed that the site no longer appears to be functional.
Anybody know what happened to them? Are there any other sites ...
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
0answers
67 views
Issue with Decoding H.263 Sorenson Spark D frames
I am trying to decode the H.263 sorenson type of data using avcodec_decode_video function.
It is able to decode the I and P frames but i have some D frames (Disposable inter frames) in my data and ...
0
votes
1answer
18 views
Why should I call Dispose on DataContainer or DataContext while it seems it doesn't differ?
I create a simple test program to find out the memory and speed difference between calling Dispose vs not calling it for DataContainer object.
Here my test program:
static void Main(string[] args)
{
...
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;
...