IImmutableSet<T>.Except(IEnumerable<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從目前的不可變資料集中,移除指定之集合內的項目。
public:
System::Collections::Immutable::IImmutableSet<T> ^ Except(System::Collections::Generic::IEnumerable<T> ^ other);
public System.Collections.Immutable.IImmutableSet<T> Except (System.Collections.Generic.IEnumerable<T> other);
abstract member Except : seq<'T> -> System.Collections.Immutable.IImmutableSet<'T>
Public Function Except (other As IEnumerable(Of T)) As IImmutableSet(Of T)
參數
- other
- IEnumerable<T>
要從此資料集移除的項目集合。
傳回
含有已移除項目的新資料集,如果資料集中沒有任何項目,則為原始的資料集。