Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a clone of this set containing
the elements from the exclusive-or operation.
Namespace: Iesi.CollectionsAssembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)
Syntax
C# |
---|
public virtual ISet ExclusiveOr(
ISet a
) |
Visual Basic |
---|
Public Overridable Function ExclusiveOr ( _
a As ISet _
) As ISet |
Visual C++ |
---|
public:
virtual ISet^ ExclusiveOr(
ISet^ a
) |
Return Value
A set containing the result of
a ^ b.
Implements
ISet..::..ExclusiveOr(ISet)See Also