ISet<T>.ExceptWith(IEnumerable<T>) メソッド

定義

現在のセットから、指定されたコレクションに含まれる要素をすべて削除します。

public:
 void ExceptWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void ExceptWith (System.Collections.Generic.IEnumerable<T> other);
abstract member ExceptWith : seq<'T> -> unit
Public Sub ExceptWith (other As IEnumerable(Of T))

パラメーター

other
IEnumerable<T>

セットから削除する項目のコレクション。

例外

othernull です。

注釈

このメソッドは O(n) 操作です。ここで n 、 は パラメーター内 other の要素の数です。

適用対象