AdvisableHashSet<T>.SymmetricExceptWith Method |
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
Namespace: PostSharp.Patterns.Collections
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 6.5.19.0 (6.5.19.0)
C#
public void SymmetricExceptWith( IEnumerable<T> other )
Parameters
- other
- Type: System.Collections.Generic.IEnumerable<T>
The collection to compare to the current set.
Implements
ISet<T>.SymmetricExceptWith(IEnumerable<T>)Exception | Condition |
---|---|
ArgumentNullException | other is null. |