I have to delete some rows from a data table. I've heard that it is not ok to change a collection while iterating through it. So instead of a for loop in which I check if a row meets the demands for deletion and then mark it as deleted, I should first iterate through the data table and add all of the rows in a list, then iterate through the list and mark the rows for deletions. What are the reasons for this, and what alternatives do I have (instead of using the rows list I mean)?.
|
1
|
|||
|
|
|
You can remove elements from a collection if you use a simple Take a look at this example:
|
||||||||||||||||
|
|
|
A while loop would handle this:
|
||
|
|
Deleting or adding to the list whilst iterating through it can break it, like you said. I often used a two list approach to solve the problem:
|
||
|
|
|
|
Since you're working with a DataTable and need to be able to persist any changes back to the server with a table adapter (see comments), here is an example of how you should delete rows:
Calling delete on the rows will change their RowState property to Deleted, but leave the deleted rows in the table. If you still need to work with this table before persisting changes back to the server (like if you want to display the table's contents minus the deleted rows), you need to check the RowState of each row as you're iterating through it like this:
Removing rows from the collection (as in bruno's answer) will break the table adapter, and should generally not be done with a DataTable. |
||
|
|
|
|
Iterating Backwards through the List sounds like a better approach, because if you remove an element and other elements "fall into the gap", that does not matter because you have already looked at those. Also, you do not have to worry about your counter variable becoming larger than the .Count.
|
||
|
|
|
|
When I need to remove an item from a collection that I am enumerating I usually enumerate it in reverse. |
||
|
|
|
|
Taking @bruno code, I'd do it backwards. Because when you move backwards, the missing array indices do not interfere with the order of your loop.
But seriuosly, these days, I'd use LINQ:
|
||||
|
|
|
chakrit's solution can also be used if you are targetting .NET 2.0 (no LINQ/lambda expressions) by using a delegate rather than a lambda expression:
|
||
|
|
