c#list.remove_清单 .Remove()方法与C#中的示例

c#list.remove

C#List <T> .Remove()方法 (C# List<T>.Remove() Method)

List<T>.Remove() method is used to remove a given item from the list.

List <T> .Remove()方法用于从列表中删除给定的项目。

Syntax:

句法:

    bool List<T>.Remove(T item);

Parameter: It accepts an item of type T to delete from the list.

参数:接受要从列表中删除的T类型的项目 。

Return value: It returns a Boolean value, if item deleted successfully – it returns true, if item was not found in the list – it returns false.

返回值:它返回一个布尔值,如果项目成功删除-返回true,如果项目没有在列表中找到-返回false。

Example:

例:

    int list declaration:
    List<int> a = new List<int>();

    adding elements:
    a.Add(10);
    a.Add(20);
    a.Add(30);
    a.Add(40);
    a.Add(50);
    
    removing elements
    a.Remove(10)    //will return true 
    a.Remove(40)    //will return true 
    a.Remove(60)    //will return false
    
    Output:
    20 30 50

使用List <T> .Remove()方法从列表中删除项目的C#示例 (C# Example to remove items from the list using List<T>.Remove() Method)

using System;
using System.Text;
using System.Collections.Generic;

namespace Test
{
    class Program
    {
        static void printList(List<int> lst)
        {
            //printing elements
            foreach (int item in lst)
            {
                Console.Write(item + " ");
            }
            Console.WriteLine();
        }

        static void Main(string[] args)
        {
            //integer list
            List<int> a = new List<int>();

            //adding elements
            a.Add(10);
            a.Add(20);
            a.Add(30);
            a.Add(40);
            a.Add(50);

            //print the list
            Console.WriteLine("list elements...");
            printList(a);

            //remove elements
            if (a.Remove(10))
                Console.WriteLine("10 is removed.");
            else
                Console.WriteLine("10 does not exist in the list.");

            if (a.Remove(40))
                Console.WriteLine("20 is removed.");
            else
                Console.WriteLine("20 does not exist in the list.");

            if (a.Remove(100))
                Console.WriteLine("100 is removed.");
            else
                Console.WriteLine("100 does not exist in the list.");

            //list after removing the elements
            Console.WriteLine("list elements after removing elements...");
            printList(a);

            //hit ENTER to exit
            Console.ReadLine();
        }
    }
}

Output

输出量

list elements...
10 20 30 40 50
10 is removed.
20 is removed.
100 does not exist in the list.
list elements after removing elements...
20 30 50


翻译自: https://www.includehelp.com/dot-net/list-t-remove-method-with-example-in-c-sharp.aspx

c#list.remove

  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值