21
votes
4answers
510 views
How do you prevent IDisposable from spreading to all your classes?
Start with these simple classes...
Let's say I have a simple set of classes like this:
class Bus
{
Driver busDriver = new Driver();
}
class Driver
{
Shoe[] shoes = { new Shoe(), new Shoe() …
18
votes
9answers
1k views
Will the GC call IDisposable.Dispose for me?
The .NET IDisposable Pattern implies that if you write a finalizer, and implement IDisposable, that your finalizer needs to explicitly call Dispose.
This is logical, and is what I've always done in …
17
votes
10answers
2k views
Dealing with .NET IDisposable objects
I work in C#, and I've been pretty lax about using using blocks to declare objects that implement IDisposable, which you're apparently always supposed to do. However, I don't see an easy way of …
12
votes
9answers
918 views
Should I Dispose() DataSet and DataTable?
DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.
However, from what I've read so far, DataSet and DataTable don't actually …
10
votes
7answers
435 views
Am I implementing IDisposable correctly?
This class uses a StreamWriter and therefore implements IDisposable.
public class Foo : IDisposable
{
private StreamWriter _Writer;
public Foo (String path)
{
// here happens something along …
10
votes
5answers
460 views
Should you implement IDisposable.Dispose() so that it never throws?
For the equivalent mechanism in C++ (the destructor), the advice is that it should usually not throw any exceptions. This is mainly because by doing so you might terminate your process, which is only …
9
votes
2answers
110 views
ASP MVC: When is IController Dispose() called?
Hey, all!
I'm going through a big refactoring / speed tweaking of one of my larger MVC apps. It has been deployed to production for a few months now, and I was starting to get timeouts waiting for …
8
votes
10answers
577 views
How do I convince my colleagues not to implement IDisposable on everything?
I work on a project where there is a huge number of objects being instanced by a few classes that stay in memory for the lifetime of the application. There are a lot of memory leaks being caused with …
7
votes
3answers
177 views
Does ASP.Net call Dispose on the Page/Controls in a page, or must I do this?
Given that the Control class implements IDisposable, I would think that ASP.Net is at least capable of triggering a Dispose cascade as the Page finishes it's life-cycle on the way out the door to the …
7
votes
5answers
694 views
Consider a “disposable” keyword in C#
What are your opinions on how disposable objects are implemented in .Net? And how do you solve the repetitiveness of implementing IDisposable classes?
I feel that IDisposable types are not the …
7
votes
10answers
518 views
Who Disposes of an IDisposable public property?
If I have a SomeDisposableObject class which implements IDisposable:
class SomeDisposableObject : IDisposable
{
public void Dispose()
{
// Do some important disposal work.
}
}
…
7
votes
3answers
190 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 …
7
votes
2answers
471 views
How does LINQ defer execution when in a using statement
Imagine I have the following:
private IEnumerable MyFunc(parameter a)
{
using(MyDataContext dc = new MyDataContext)
{
return dc.tablename.Select(row => row.parameter == a);
}
}
…
6
votes
4answers
143 views
How to handle disposable objects we don’t have a reference to?
If you have a brush and pen as in:
Brush b = new SolidBrush(color);
Pen p = new Pen(b);
and dispose them like so:
b.Dispose();
p.Dispose();
How would you dispose it if it was:
Pen p = …
6
votes
5answers
207 views
returning in the middle of a using block.
Something like:
using (IDisposable disposable = GetSomeDisposable())
{
//.....
//......
return Stg();
}
I believe it is not a proper place for a return statement, is it?
