Tagged Questions

IDisposable is an interface within the Microsoft .NET Framework's Base Class Library (BCL). It is intended to provide a generic, deterministic method of releasing unmanaged resources within .NET application code.

learn more… | top users | synonyms

69
votes
12answers
26k views

C# Finalize/Dispose pattern

C# 2008 I have been working on this for a while now. And I am still confused about some issues. My questions below I know that you only need a finalizer if you are disposing of unmanaged resources. ...
63
votes
13answers
9k views

Proper use of the IDisposable interface

I know from reading the MSDN documentation that the "primary" use of the IDisposable interface is to clean up unmanaged resources. To me, "unmanaged" means things like database connections, sockets, ...
56
votes
9answers
14k 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 ...
55
votes
7answers
2k 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() ...
37
votes
9answers
4k views

Will the Garbage Collector 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 ...
31
votes
12answers
6k 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 ...
29
votes
4answers
491 views

Duck typing in the C# compiler

Note This is not a question about how to implement or emulate duck typing in C#... For several years I was under the impression that certain C# language features were depdendent on data structures ...
23
votes
6answers
1k 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 ...
22
votes
7answers
1k views

Should an .Net/C# object call Dispose() on itself?

Below is some sample code written by a colleague. This seems obviously wrong to me but I wanted to check. Should an object call its own Dispose() method from within one of its own methods? It seems to ...
21
votes
11answers
945 views

Long overdue (for me) question about disposing managed objects in .Net, VB.Net, C#

I can't believe I'm still confused about this but, any way, lets finally nail it: I have a class that overrides OnPaint to do some drawing. To speed things up, I create the pens, brushes etc before ...
20
votes
5answers
2k views

C# using statement with a null object

Is it safe to use the using statement on a (potentially) null object? I.e. consider the following example: class Test { IDisposable GetObject(string name) { // returns null if not found ...
18
votes
7answers
2k views

How do you reconcile IDisposable and IoC?

I'm finally wrapping my head around IoC and DI in C#, and am struggling with some of the edges. I'm using the Unity container, but I think this question applies more broadly. Using an IoC ...
18
votes
5answers
9k views

How does one tell if an IDisposable object reference is disposed?

Is there a method, or some other light-weight way, to check if a reference is to a disposed object? P.S. - This is just a curiousity (sleep well, not in production code). Yes, I know I can catch the ...
17
votes
2answers
847 views

ASP MVC: When is IController Dispose() called?

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 connections ...
17
votes
7answers
5k 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 ...
16
votes
8answers
647 views

Why should Dispose() be non-virtual?

I'm new to C#, so apologies if this is an obvious question. In the MSDN Dispose example, the Dispose method they define is non-virtual. Why is that? It seems odd to me - I'd expect that a child ...
15
votes
1answer
3k views

C# Linq-to-Sql - Should DataContext be disposed using IDisposable

I have several methods that deal with DB and all of them start by calling FaierDbDataContext db = new FaierDbDataContext(); Since the Linq2Sql DataContext object implements IDisposable, should this ...
15
votes
10answers
1k 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. } } ...
13
votes
11answers
749 views

Why is 'using' improving C# performances

It seems that in most cases the C# compiler could call Dispose() automatically. Like most cases of the using pattern look like: public void SomeMethod() { ... using (var foo = new Foo()) ...
13
votes
8answers
2k views

Using IDisposable to unsubscribe events

I have a class that handles events from a WinForms control. Based on what the user is doing, I am deferencing one instance of the class and creating a new one to handle the same event. I need to ...
12
votes
5answers
475 views

What happens if i return before the end of using statement? Will the dispose be called?

I've the following code using(MemoryStream ms = new MemoryStream()) { //code return 0; } The dispose() method is called at the end of using statement braces } right? Since I return ...
12
votes
7answers
439 views

How should I handle exceptions in my Dispose() method?

I'd like to provide a class to manage creation and subsequent deletion of a temporary directory. Ideally, I'd like it to be usable in a using block to ensure that the directory gets deleted again ...
12
votes
2answers
1k views

yield return statement inside a using() { } block Disposes before executing

I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern. This is all based on the .NET 2.0 Framework (given constraints for the ...
12
votes
11answers
1k 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 ...
11
votes
6answers
124 views

What is the correct way of adding thread-safety to an IDisposable object?

Imagine an implementation of the IDisposable interface, that has some public methods. If an instance of that type is shared between multiple threads and one of the threads may dispose it, what is ...
11
votes
1answer
94 views

Failsafe disposal in an async world

In the synchronous world, C# makes the management of all things disposable really rather easy: using(IDisposable someDisposable=bla.bla()) { //do our bidding } //don't worry too much about it ...
11
votes
6answers
1k views

Getting rid of nested using(…) statements

Sometimes I need to use several disposable objects within a function. Most common case is having StreamReader and StreamWriter but sometimes it's even more than this. Nested using statements quickly ...
11
votes
7answers
3k 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 ...
10
votes
7answers
529 views

Determine if executing in finally block due to exception being thrown

Is it possible to determine if code is currently executing in the context of a finally handler as a result of an exception being thrown? I'm rather fond of using the IDisposable pattern to implement ...
10
votes
4answers
298 views

Why would a class implement IDisposable explicitly instead of implicitly?

I was using the FtpWebResponse class and didn't see a Dispose method. It turns out that the class implements IDisposable, but does so explicitly so that you must first cast your instance to ...
10
votes
4answers
366 views

IDisposable: is it necessary to check for null on finally {}?

In most examples that you find on the web when explicitly not using "using", the pattern looks something like: SqlConnection c = new SqlConnection(@"..."); try { c.Open(); ... } finally { ...
10
votes
9answers
303 views

IDisposable, does it really matter

Coming from C/C++ a long time ago I still have a habit of ensuring that all resources are cleaned up correctly. I always ensure Dispose is called on IDisposable classes and implement Dispose patterns ...
10
votes
2answers
282 views

What happens when 'return' is called from within a 'using' block?

If I have a method with a using block like this... public IEnumerable<Person> GetPersons() { using (var context = new linqAssignmentsDataContext()) { return ...
10
votes
6answers
253 views

Can I “inline” a variable if it's IDisposible?

Do I have to do this to ensure the MemoryStream is disposed of properly? using (MemoryStream stream = new MemoryStream(bytes)) using (XmlReader reader = XmlReader.Create(stream)) { return ...
10
votes
5answers
2k views

How should I inherit IDisposable?

Class names have been changed to protect the innocent. If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses ...
10
votes
4answers
869 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 ...
10
votes
5answers
748 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?
9
votes
5answers
157 views

Correct IDisposable implementation for this code

I have the following code public static byte[] Compress(byte[] CompressMe) { using (MemoryStream ms = new MemoryStream()) { using (GZipStream gz = new GZipStream(ms, ...
9
votes
2answers
994 views

Ninject doesn't call Dispose on objects when out of scope

I was surprised to find that at least one of my objects created by Ninject is not disposed of at the end of the request, when it has been defined to be InRequestScope Here's the object I'm trying to ...
9
votes
4answers
365 views

Who should call Dispose on IDisposable objects when passed into another object?

Is there any guidance or best practices around who should call Dispose() on disposable objects when they have been passed into another object's methods or constuctor? Here's a couple of examples as ...
9
votes
2answers
606 views

How do I unit test a finalizer?

I have the following class which is a decorator for an IDisposable object (I have omitted the stuff it adds) which itself implements IDisposable using a common pattern: public class ...
9
votes
9answers
384 views

Should IDisposable be applied cascadingly?

This is a rather basic question, however I'm still struggling with it a little. IDisposable is implemented, when you want to enable the user of an object to free underlying resources (e.g. sockets ...
9
votes
7answers
3k views

What's the point of overriding Dispose(bool disposing) in .NET?

If I write a class in C# that implements IDisposable, why isn't is sufficient for me to simply implement public void Dispose(){ ... } to handle freeing any unmanaged resources? Is protected ...
9
votes
6answers
419 views

How to manage IDisposable Objects that are cached?

I have an object that is expensive to create, which uses some unmanaged resources that must be explicitly freed when done with and so implement IDisposable(). I would like a cache for instance of ...
9
votes
2answers
965 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); } } ...
8
votes
6answers
87 views

Hierarchy of classes that use a disposable object. Implement IDisposable on all of them?

I have a class that uses a filestream. It needs to close the stream when the app shuts down, so I make the class implement IDisposable. That class is a member of another class, which is a member of ...
8
votes
5answers
245 views

IDisposable implementation - What should go in 'if (disposing)'

I have been fixing some memory leak issues in a winforms application and noticed some disposable objects that are not Disposed explicitly (developer hasn't called Dispose method). Implementation of ...
8
votes
8answers
240 views

Will ignoring IDisposable cause memory leaks?

In the comments to an answer I wrote we had a discussion about memory leaks and IDisposable where we didn't come to any real conclusion. A class that handles unmanaged resources likely implements ...
8
votes
4answers
84 views

Design dilemma: who should handle disposable parameter?

If my class uses disposable resource in it's constructor (DbConnection if it matters) should I implement IDisposable in my class and dispose DbConnection object, or let user handle disposal of ...
8
votes
4answers
280 views

Keeping references to `IDisposable` when using the Reactive Extensions for .NET: always, never, or sometimes?

Up until now I have zealously kept every reference to the IDisposable returned from any .Subscribe(...), .Connect(...), etc, method within Rx. I've done this because of my fear that a garbage ...

1 2 3 4 5 10