ImmutableArray<T>.RemoveAll(Predicate<T>) 方法

定義

從陣列中移除符合指定條件的所有項目。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveAll(Predicate<T> ^ match);
public System.Collections.Immutable.ImmutableArray<T> RemoveAll (Predicate<T> match);
member this.RemoveAll : Predicate<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveAll (match As Predicate(Of T)) As ImmutableArray(Of T)

參數

match
Predicate<T>

定義要移除項目之條件的委派。

傳回

已移除符合指定條件之項目的新陣列。

適用於