Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Many times there is a clear method, that removes all the items from the collections, are these items disposed also.

Like,

toolStripMenuItem.DropDownItems.Clear();

is sufficient, or should I have to call like that:

foreach (ToolStripItem item in toolStripMenuItem.DropDownItems)
{
  toolStripMenuItem.DropDownItems.Remove(item);
  item.Dispose();
}

Edit: Well ToolStripItem is an example not a question, for those who says Clear is enough I found another example, TabControl has also item collection and clear method. But TabControls can have complex controls (at least I have), which needs to be explicitly Dispose (even if they are Disposed automatically at some point by GC, cause they take huge memory). I guess the best answer is divo comment to dispose the items, and then call clear.

share|improve this question
I believe the author is a C/C++ developer that "needs" to dispose the resources in every function, even if in .NET is not a such necessity. I doubt about the necessity of Finalize/Dispose items after Clear ing it from the collection. – serhio Dec 28 '09 at 11:39
2  
@serhio - in .NET, it is still your job to call Dispose() on IDisposable resources, or ensure that Dispose() is called by some other code. – Marc Gravell Dec 28 '09 at 11:41
Using .NET Reflector is a good way to see whether ToolStripItemCollection.Clear() actually calls Dispose on the collection items or not. If you look at the disassembled source you will see that it doesn't. – 0xA3 Dec 28 '09 at 11:43
@Marc: tell me one cause why should I dispose a ToolStripItem? I'd simply leaved this task to the GC. – serhio Dec 28 '09 at 11:44
1  
@serhio: Whether or not a ToolStripItem actually uses unmanaged resources or not is an implementation detail. The fact is, it implements IDisposable, and the contract of IDisposable says "This object MAY directly or indirectly use some unmanaged resources, and you should dispose of it whenever you are done with it." – Aaronaught Dec 28 '09 at 16:17
show 3 more comments

4 Answers

up vote 1 down vote accepted

Q: Does?

A: No - Clear does not dispose the items (they could be used in other parts of your application).

So, if your ToolStripItems are standard .NET ones, should Clear be sufficient? After some reflection I'd say "probably not".

Yeah, this is true that if you will have any references to the ToolStripItem in other part of your application, the .NET GarbageCollector will destroy(use the class destructor) it automatically. But, it will not call the Dispose(true) method, that is, however, required for the form's IDisposable components.

Read a propos this and this.

Actually, I believe that you will, however, need to explicitly Dispose your Items, like the ToolStrip's Dispose method does (replace this by yourToolStrip):

if (!this.Items.IsReadOnly)
{
    for (int i = this.Items.Count - 1; i >= 0; i--)
    {
        this.Items[i].Dispose();
    }
    this.Items.Clear();
}

EDIT

I also created the following thread to clarify this question more generally.

share|improve this answer
2  
No, clear won't be sufficient if the objects in the collection need disposal. The finalizer might dispose the object; however, it is not deterministic when this will occur and it is not certain that it will occur at all (see msdn.microsoft.com/en-us/library/system.object.finalize.aspx: "The Finalize method might not run to completion or might not run at all in the following exceptional circumstances..." – 0xA3 Dec 28 '09 at 11:36
I doubt about the necessity of Finalize/Dispose items after Clear ing it from the collection. – serhio Dec 28 '09 at 11:42
Hi serhio, shouldn't this 'If you will have any references' should be 'If you do not have any references' – Priyank Bolia Dec 28 '09 at 12:28
@Priyank: No, when (nobody knows exactly) GC will collect the garbage, it will verify the references. This is why I used the future. – serhio Dec 28 '09 at 12:53
1  
I guess its still confusing, if you have any references in other part of your application, why would GarbageCollector will destroy(Dispose) it automatically? As you still got references. I am sorry, but this sentence makes me confuse. – Priyank Bolia Dec 28 '09 at 13:00
show 3 more comments

You should rely on Dispose() call when you're dealing with unmanaged memory, shared resources or large memory areas. Doesn't seems this case.

share|improve this answer

Calling Clear doesn't dispose the items, but it removes the reference from the collection to the items. If that was the only reference to the items they will be garbage collected automatically at some point (which you can't predict, but you may control using the GC class).

share|improve this answer
Relying on the garbage collector for disposal is not safe. See my comment on serhio's answer. – 0xA3 Dec 28 '09 at 11:39
@divo: there is any necessity to fill your code with garbage if your ToolStripItem is a standard WinForm object. – serhio Dec 28 '09 at 11:53
@serhio: In a "normal" Windows Forms application it is usually not necessary to call Component.Dispose() explicitly as it is already called then the form is closed (See the designer-generated code behind, it overwrites Dispose and calls Dispose on each component used in the form). However, if you add and remove components dynamically at runtime, it is your responsibility to explicitly dispose these components. – 0xA3 Dec 28 '09 at 12:03
1  
@serhio: And a Control is a Component: public class Control : Component, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable – 0xA3 Dec 28 '09 at 12:21
1  
@serhio: I suggest you to dive into the .NET sources using Reflector. You will see that Form derives from Control which calls Dispose on all of its child components in its own Dispose method. – 0xA3 Dec 28 '09 at 12:36
show 6 more comments

I don't think so,more, it can cause many logical problems because you may have reference to that object in the collection for later use. If you don't have references to that objects Garbage Collector will dispose that objects later

share|improve this answer
hm... pointer in .NET is not a right word. – serhio Dec 28 '09 at 11:26
corrected @serhio – ArsenMkrt Dec 28 '09 at 11:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.