在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。