ISet<T>.ExceptWith(IEnumerable<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從目前的資料集中,移除指定之集合內的所有項目。
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>
要從資料集移除的項目集合。
例外狀況
other
為 null
。
備註
這個方法是 O (n
) 作業,其中 n
是 參數中的 other
元素數目。