Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources
59
votes
8answers
1k views
Is there a situation in which Dispose won't be called for a Using block
This was a telephone interview question I had:
Is there a time when Dispose will not be called on an object who's scope is declared by a using block?
My answer was no - even if an exception happens ...
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() ...
40
votes
12answers
9k views
Do you need to dispose of objects and set them to null?
Do you need to dispose of objects and set them to null, or will the garbage collector clean them up when they go out of scope?
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 ...
28
votes
9answers
7k 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 ...
23
votes
3answers
1k views
Is it considered acceptable to not call Dispose() on a TPL Task object?
I want to trigger a task to run on a background thread. I don't want to wait on the tasks completion.
In .net 3.5 I would have done this:
ThreadPool.QueueUserWorkItem(d => { DoSomething(); });
...
23
votes
4answers
12k views
Disposing WPF User Controls
I have created a custom WPF user control which is intended to be used by a third party. My control has a private member which is disposable, and I would like to ensure that its dispose method will ...
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
7answers
4k views
Finalize vs Dispose
Why do some people use the Finalize method over the Dispose method?
In what situations would you use the Finalize method over the Dispose method and vice versa?
19
votes
8answers
1k views
Any sense to set obj = null(Nothing) in Dispose()?
Is there any sense to set custom object to null(Nothing in VB.NET) in the Dispose() method?
Could this prevent memory leaks or it's useless?!
Let's consider two examples:
public class Foo : ...
19
votes
18answers
8k 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 ...
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 ...
16
votes
8answers
645 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 ...
16
votes
7answers
5k 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
{
...
16
votes
8answers
2k 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 ...
16
votes
6answers
10k views
How do I add Dispose functionality to a C# UserControl?
I have a class which implements UserControl. In .NET 2005, a Dispose method is automatically created in the MyClass.Designer.cs partial class file that looks like this:
protected override void ...
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.
}
}
...
14
votes
10answers
635 views
What happens if I don't call Dispose?
What happens if I don't call Dispose on the pen object in this code snippet?
private void panel_Paint(object sender, PaintEventArgs e)
{
var pen = Pen(Color.White, 1);
//Do some drawing
}
13
votes
10answers
658 views
Dispose vs Dispose(bool)
I am confused about dispose. I am trying to get my code disposing resources correctly. So I have been setting up my classes as IDisposable (with a Dispose method) them making sure that the Dispose ...
13
votes
11answers
748 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
3answers
3k views
C# USING keyword - when and when not to use it?
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 ...
12
votes
5answers
473 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
8answers
6k 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?
11
votes
2answers
433 views
Two questions about Dispose() and destructors in C#
I have a question about how to use Dispose() and destructors. Reading some articles and the MSDN documentation, this seems to be the recommended way of implementing Dispose() and destructors.
But I ...
11
votes
5answers
2k views
How bad is it to not dispose() in Powershell?
Sometimes we need to perform small administrative tasks in SharePoint. A simple PowerShell script is a really good tool for that. For instance, such script can enumerate event handlers of a list:
...
11
votes
5answers
5k views
Why call dispose(false) in the destructor?
What follows is a typical dispose pattern example:
public bool IsDisposed { get; private set; }
#region IDisposable Members
public void Dispose()
{
Dispose(true);
...
10
votes
1answer
117 views
Why do I have to cast to a specific pointer type before calling Dispose?
Let's suppose I have an instance of the TList class (BDS 2006, so this is a list of pointer types). Each pointer I put into the list references memory allocated by the New() function. So when I want ...
10
votes
4answers
97 views
Is it a bad idea to write the Dispose/Close method to be asynchronous?
Instead of doing the cleanup on the same thread (or launching a background thread and blocking till it completes) start the cleanup on a "background" (IsBackground = false, so it doesn't get ...
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
747 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
3answers
205 views
F#: Disposing of resources that are inside a closure?
Suppose I create a closure over a resource such as a StreamWriter:
let currentdir = Directory.GetCurrentDirectory()
let testfile = sprintf "%s\\%s" currentdir "closuretest.txt"
let getwriter() =
...
9
votes
3answers
1k views
Ninject and DataContext disposal
I'm using Ninject to retrieve my DataContext from the kernel and I was wondering if Ninject automatically disposes the DataContext, or how he handles the dispose() behaviour. From own experiences I ...
9
votes
5answers
846 views
Need I remove controls after disposing them?
.NET 2
// dynamic textbox adding
myTextBox = new TextBox();
this.Controls.Add(myTextBox);
// ... some code, finally
// dynamic textbox removing
myTextBox.Dispose();
// ...
9
votes
2answers
424 views
Do custom events need to be set to null when disposing an object?
Lets says we have 2 objects, Broadcaster and Listener. Broadcaster has an event called Broadcast to which Listener is subscribed. If Listener is disposed without unsubscribing from the Broadcast event ...
9
votes
2answers
922 views
Entity Framework - How should I instance my “Entities” object
I'm a total newbie at Entity Framework and ASP.Net MVC, having learned mostly from tutorials, without having a deep understanding of either. (I do have experience on .Net 2.0, ADO.Net and WebForms)
...
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
7answers
5k views
Is it necessary to dispose System.Timers.Timer if you use one in your application?
I am using System.Timers.Timer class in one of the classes in my application.
I know that Timer class has Dispose method inherited from the parent Component class that implements IDisposable ...
9
votes
4answers
4k views
Do I need to dispose a web service reference in ASP.NET?
Does the garbage collector clean up web service references or do I need to call dispose on the service reference after I'm finished calling whatever method I call?
8
votes
3answers
365 views
When will an object declared in a static class get garbage collected?
public static class stClass
{
static Class1 obj = new Class1();
public static int returnSomething()
{
return 0;
}
}
When will the Class1 instance obj in stClass get garbage ...
8
votes
12answers
523 views
When to dispose and why?
I asked a question about this method:
// Save an object out to the disk
public static void SerializeObject<T>(this T toSerialize, String filename)
{
XmlSerializer xmlSerializer = new ...
8
votes
2answers
726 views
What best practices for cleaning up event handler references?
Often I find myself writing code like this:
if (Session != null)
{
Session.KillAllProcesses();
Session.AllUnitsReady -= Session_AllUnitsReady;
...
8
votes
9answers
375 views
Is it possible to force the use of “using” for disposable classes?
I need to force the use of "using" to dispose a new instance of a class.
public class MyClass : IDisposable
{
...
}
using(MyClass obj = new MyClass()) // Force to use "using"
{
}
8
votes
6answers
2k views
Do I need to call Close() on a ManualResetEvent?
I've been reading up on .NET Threading and was working on some code that uses a ManualResetEvent. I have found lots of code samples on the internet. However, when reading the documentation for ...
8
votes
7answers
531 views
C# .NET object disposal
Should be an easy one. Let's say I have the following code:
void Method()
{
AnotherMethod(new MyClass());
}
void AnotherMethod(MyClass obj)
{
Console.WriteLine(obj.ToString());
}
If I call ...
8
votes
2answers
2k views
Does garbage collector call Dispose()?
I thought the GC would call Dispose eventually if your program did not but that you should call Dispose() in your program just to make the cleanup deterministic.
However, from my little test program, ...
8
votes
6answers
2k views
How do I extend a WinForm's Dispose method?
I am getting this warning from FxCop:
"'RestartForm' contains field 'RestartForm.done' that is of IDisposable type: 'ManualResetEvent'. Change the Dispose method on 'RestartForm' to call Dispose ...
8
votes
2answers
2k views
C# cleanup unmanaged resources when process is killed
I have a class that instantiates a COM exe out of process. The class is
public class MyComObject:IDisposable
{
private bool disposed = false;
MyMath test;
public MyComObject()
{
...
8
votes
3answers
4k views
Is SqlCommand.Dispose enough?
Can I use this approach efficiently?
using(SqlCommand cmd = new SqlCommand("GetSomething", new SqlConnection(Config.ConnectionString))
{
cmd.Connection.Open();
// set up parameters and ...
7
votes
3answers
131 views
Disposing SQL command and closing the connection
till now I always used a similar structure to get data from DB and fill a DataTable
public static DataTable GetByID(int testID)
{
DataTable table = new DataTable();
string ...