i try to dispose controls in split container using this code.

 foreach (Control c in splitContainerMain.Panel2.Controls) 
 { 
     c.Dispose(); 
 }

but problem is split container has contains two controls and get count is two. but i try to dispose using this code then one control is dispose successfully but second control can not be disposed.

link|improve this question
Show the exception – Oskar Kjellin Nov 24 '11 at 10:57
3  
Is there a reason why you are manually disposing the controls contained within the container instead of just calling Dispose() on the container itself? – Samuel Slade Nov 24 '11 at 11:01
feedback

1 Answer

up vote 2 down vote accepted

I don't think that you should be using foreach in this case since the controls collection could be shrinking as items are disposed.

I think you would be much better off as follows:

 for (int nI = splitContainerMain.Panel2.Controls.Count - 1; nI >= 0; nI--) 
 { 
     splitContainerMain.Panel2.Controls[nI].Dispose();
 }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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