迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

C# 从列表中删除元素

作者:迹忆客 最近更新:2024/01/03 浏览次数:

在 C# 中,我们可以对 List 数据结构执行几种操作。可以添加、删除和替换这些元素。要在 C# 中从列表中删除一个元素,我们使用 Remove()RemoveAt()RemoveRange() 方法。

这些方法根据索引或值将其从列表中删除。在接下来的几个示例中,你将学习如何实现这些。


C# 使用 Remove() 方法从 List 中删除元素

这个 Remove() 方法根据列表上的名称删除元素。此方法的正确语法如下:

ListName.Remove("NameOfItemInList");

示例代码:

using System;
using System.Collections.Generic;

public class Removal {
  public static void Main() {
    List<string> Flowers = new List<string>();
    Flowers.Add("Rose");
    Flowers.Add("Jasmine");
    Flowers.Add("Lili");
    Flowers.Add("Hibiscus");
    Flowers.Add("Daisy");
    Console.WriteLine("List Before Removal:");
    foreach (string flower in Flowers) {
      Console.WriteLine(flower);
    }
    Console.WriteLine();
    // Use of Remove() method
    Flowers.Remove("Lili");
    Console.WriteLine("List After Removal:");
    foreach (string flower in Flowers) {
      Console.WriteLine(flower);
    }
  }
}

输出:

List Before Removal:
Rose
Jasmine
Lili
Hibiscus
Daisy

List After Removal:
Rose
Jasmine
Hibiscus
Daisy

C# 使用 RemoveAt() 方法从 List 中删除元素

RemoveAt() 方法根据该元素的索引号从 List 中删除该元素。我们已经知道 C# 中的索引以 0 开头。因此,选择索引号时要小心。此方法的正确语法如下:

ListName.RemoveAt(Index);

示例代码:

using System;
using System.Collections.Generic;

public class Removal {
  public static void Main() {
    List<string> Flowers = new List<string>();
    Flowers.Add("Rose");
    Flowers.Add("Jasmine");
    Flowers.Add("Lili");
    Flowers.Add("Hibiscus");
    Flowers.Add("Daisy");
    Console.WriteLine("List Before Removal:");
    foreach (string flower in Flowers) {
      Console.WriteLine(flower);
    }
    Console.WriteLine();
    // Use of RemoveAt() method
    Flowers.RemoveAt(3);
    Console.WriteLine("List After Removal:");
    foreach (string flower in Flowers) {
      Console.WriteLine(flower);
    }
  }
}

输出:

List Before Removal:
Rose
Jasmine
Lili
Hibiscus
Daisy

List After Removal:
Rose
Jasmine
Lili
Daisy

C# 使用 RemoveRange() 方法从 List 中删除元素

在 C# 中,我们也可以同时删除多个元素。为此,可以使用 RemoveRange() 方法。我们将要删除的元素范围作为参数传递给该方法。此方法的正确语法如下:

ListName.RemoveRange(int index, int count);

index 是要删除的元素的起始索引,count 是要删除的元素的数量。

示例代码:

using System;
using System.Collections.Generic;

public class Removal {
  public static void Main() {
    List<string> Flowers = new List<string>();
    Flowers.Add("Rose");
    Flowers.Add("Jasmine");
    Flowers.Add("Lili");
    Flowers.Add("Hibiscus");
    Flowers.Add("Daisy");
    Console.WriteLine("List Before Removal:");
    foreach (string flower in Flowers) {
      Console.WriteLine(flower);
    }
    Console.WriteLine();
    // Use of RemoveRange() method
    Flowers.RemoveRange(3, 2);
    Console.WriteLine("List After Removal:");
    foreach (string flower in Flowers) {
      Console.WriteLine(flower);
    }
  }
}

输出:

List Before Removal:
Rose
Jasmine
Lili
Hibiscus
Daisy

List After Removal:
Rose
Jasmine
Lili

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便