C# list批量删除
时间: 2023-10-11 19:12:03 浏览: 200
批量删除
在C#中,你可以使用不同的方法来批量删除List中的元素。以下是几个常见的方法:
1. 使用foreach循环遍历List,并使用Remove方法删除满足条件的元素。然而,在foreach循环中删除元素会引发异常,因为集合正在遍历中被修改。所以这个方法可能不适用于批量删除。
2. 使用for循环正序遍历List,并使用Remove方法删除满足条件的元素。需要注意的是,在for循环中删除元素时,要从后往前遍历以避免索引溢出的问题。以下是示例代码:
```csharp
for (int i = stuList.Count - 1; i >= 0; i--)
{
if (stuList[i].Name == "Tang")
stuList.Remove(stuList[i]);
}
```
3. 使用for循环倒序遍历List,并使用Remove方法删除满足条件的元素。同样,需要从后往前遍历以避免索引溢出的问题。以下是示例代码:
```csharp
for (int i = stuList.Count - 1; i >= 0; i--)
{
if (stuList[i].Name == "Tang")
stuList.Remove(stuList[i]);
}
```
这些方法中,使用for循环倒序遍历删除是较为常用的方法,因为它避免了引发异常的问题并且性能较好。但是,需要注意在删除元素后要及时更新循环变量,以避免跳过元素或重复删除的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [C#泛型List删除多个元素的方法](https://blog.csdn.net/weixin_42513339/article/details/83211500)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文