ISet<T>.SymmetricExceptWith(IEnumerable<T>) 方法

定义

修改当前集,使该集仅包含存在于当前集或指定集合中的元素(但不同时存在于两者中)。

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

参数

other
IEnumerable<T>

要与当前集进行比较的集合。

例外

othernull

注解

other 任何重复的元素将被忽略。

适用于