473,804 Members | 3,081 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

IDisposable and 'using' - GC giving me trouble...

Hi all!

I have created a few classes that inherits the IDisposable-interface, and if
I don't use them in this fashion

using(bla bla bla)
{
// do stuff
}

the application seem to raise a 'non-fixable' exception at exit.

Is implementing IDisposable together with 'using' a preferred way to fire
the Dispose method, and not letting the GC handle things)?

I implement IDisposable to have an option to 'clean up' cleaning up exactly
when I want it too happen. Is this correct use of IDisposable?

TIA
Per Rollvang
Nov 16 '05 #1
2 1119
It's almost always better to call Dispose explicitly rather than letting the
GC handle things.

The GC is only really concerned with memory - it doesn't have a good concept
of the costs of any other kind of resource. The upshot of this is that if
you rely on the GC to tidy up other kinds of resources, it often doesn't do
the cleanup as often as you would like.

This is why IDisposable was invented in the first place.
--
Ian Griffiths - http://www.interact-sw.co.uk/iangblog/
DevelopMentor - http://www.develop.com/

"Per Rollvang" <perrollvang(at )hotmail.com> wrote:

I have created a few classes that inherits the IDisposable-interface, and
if I don't use them in this fashion

using(bla bla bla)
{
// do stuff
}

the application seem to raise a 'non-fixable' exception at exit.

Is implementing IDisposable together with 'using' a preferred way to fire
the Dispose method, and not letting the GC handle things)?

I implement IDisposable to have an option to 'clean up' cleaning up
exactly when I want it too happen. Is this correct use of IDisposable?

Nov 16 '05 #2
Thanks a lot Ian,

at least I was doing something right...

Regards, Per Rollvang

"Ian Griffiths [C# MVP]" <ia************ *@nospam.nospam > wrote in message
news:OP******** ********@TK2MSF TNGP09.phx.gbl. ..
It's almost always better to call Dispose explicitly rather than letting
the GC handle things.

The GC is only really concerned with memory - it doesn't have a good
concept of the costs of any other kind of resource. The upshot of this is
that if you rely on the GC to tidy up other kinds of resources, it often
doesn't do the cleanup as often as you would like.

This is why IDisposable was invented in the first place.
--
Ian Griffiths - http://www.interact-sw.co.uk/iangblog/
DevelopMentor - http://www.develop.com/

"Per Rollvang" <perrollvang(at )hotmail.com> wrote:

I have created a few classes that inherits the IDisposable-interface, and
if I don't use them in this fashion

using(bla bla bla)
{
// do stuff
}

the application seem to raise a 'non-fixable' exception at exit.

Is implementing IDisposable together with 'using' a preferred way to fire
the Dispose method, and not letting the GC handle things)?

I implement IDisposable to have an option to 'clean up' cleaning up
exactly when I want it too happen. Is this correct use of IDisposable?


Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
404
by: Bendik Engebretsen | last post by:
My main project is an MFC application. Its document class derives from COleServerDoc and I have implemented an Automation interface based on IDispatch. I am using VisualBasic to test the Automation interface. After moving to VB.NET, I have gotten into trouble when releasing my document objects. Earlier, I used the syntax MyDoc = Nothing
9
4389
by: Razzie | last post by:
Hey all, When should or should you not inherit from the IDisposable interface for your custom classes? Say I have a custom class SomeClass that does... some stuff. If I create a new instance of SomeClass and it goes out of scope, the GC will always clean that up, right? So, why should I undergo the trouble of inheriting from IDisposable, implement the Dispose() and Dispose(bool disposed) methods - when there is no difference? Are...
2
1417
by: Bendik Engebretsen | last post by:
My main project is an MFC application. Its document class derives from COleServerDoc and I have implemented an Automation interface based on IDispatch. I am using VisualBasic to test the Automation interface. After moving to VB.NET, I have gotten into trouble when releasing my document objects. Earlier, I used the syntax MyDoc = Nothing
4
2036
by: Helge Jensen | last post by:
In C# 2.0 System.IO.Stream is declared as: public class Stream: ..., IDisposable { ... public void Dispose(); public void Dispose(bool); IDisposable.Dispose(); } Which must be a design-blunder, if not a 100-year sleep. It prevents
0
9591
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10343
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10331
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10087
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9166
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6861
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5667
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4306
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.