91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C#如何刪除數組中指定的值

c#
小億
172
2024-01-13 15:22:27
欄目: 編程語言

在C#中,可以使用List<T>來代替數組,并使用RemoveAll方法刪除指定的值。以下是一個示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 定義一個包含指定值的數組
        int[] numbers = { 1, 2, 3, 4, 5, 3 };

        // 轉換為List
        List<int> numberList = new List<int>(numbers);

        // 刪除指定的值
        numberList.RemoveAll(n => n == 3);

        // 打印結果
        foreach (int number in numberList)
        {
            Console.WriteLine(number);
        }
    }
}

上述示例中,我們首先將數組numbers轉換為List<int>對象numberList,然后使用RemoveAll方法刪除所有等于3的元素。最后打印結果,只剩下1、2、4、5。

0
噶尔县| 峨眉山市| 霍山县| 清流县| 文安县| 巴中市| 什邡市| 苗栗市| 平阳县| 诸城市| 青海省| 利川市| 石阡县| 安塞县| 洛隆县| 高邑县| 顺平县| 财经| 绥滨县| 罗山县| 揭西县| 荃湾区| 瓦房店市| 湟源县| 恩施市| 桐庐县| 格尔木市| 德江县| 大宁县| 若羌县| 通许县| 玛沁县| 昌图县| 井冈山市| 武强县| 神农架林区| 行唐县| 五常市| 安福县| 绥宁县| 云浮市|