21
votes
4answers
582 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 …
15
votes
18answers
2k views
How to dispose a class in .net?
The .net garbage collector will eventually free up memory, but what if you want that memory back immediately? What code do you need to use in a class myclass to call
myclass.dispose
and free up …
12
votes
9answers
976 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 …
12
votes
7answers
2k views
What is the difference between using IDisposable vs a destructor in C#?
When would I implement IDispose on a class as opposed to a destructor? I read this article, but I'm still missing the point.
My assumption is that if I implement IDispose on an object, I can …
11
votes
8answers
374 views
SPWeb.Site, should you call Dispose() on it?
Updated 06/08/2009 15:52: Short answer NO. Original question:
I can't find any reference which gives guidance on SPWeb.Site regarding disposing. I've gone through some of the more popular best …
7
votes
10answers
523 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.
}
}
…
6
votes
5answers
209 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?
6
votes
5answers
295 views
How does the IDisposable interface work?
I understand that it is used to deallocate unmanaged resources, however, I am confused as to when Dispose is actually called. I know it is called at the end of a using block, but does it also get …
6
votes
4answers
861 views
C# USING keyword - when and when not to use it?
Hi,
I'd like to know when i should and shouldn't be wrapping things in a USING block.
From what I understand, the compiler translates it into a try/finally, where the finally calls Dispose() on the …
6
votes
9answers
1k views
When should I dispose my objects in .NET?
For general code, do I really need to dispose an object? Can I just ignore it for the most part or is it a good idea to always dispose an object when your 100% sure you don't need it anymroe?
5
votes
5answers
172 views
C#: Do I need to dispose a BackgroundWorker created at runtime?
I typically have code like this on a form:
private void PerformLongRunningOperation()
{
BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += delegate
{
…
5
votes
4answers
177 views
Dispose question
When you have code like:
Bitmap bmp = new Bitmap ( 100, 100 );
Graphics g = Graphics.FromImage ( bmp );
Pen p = new Pen ( Color.FromArgb ( 128, Color.Blue ), 1 );
Brush b = new SolidBrush ( …
5
votes
2answers
238 views
How can I dispose System.Xml.XmlWriter in PowerShell
I am trying to dispose XmlWriter object:
try
{
[System.Xml.XmlWriter] $writer = [System.Xml.XmlWriter]::Create('c:\some.xml')
}
finally
{
$writer.Dispose()
}
Error:
Method invocation …
5
votes
5answers
1k 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 …
