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 one of the sets (a if it is not nullNothingnullptra null reference (Nothing in Visual Basic)) containing the elements from the exclusive-or operation.

Namespace: Iesi.Collections
Assembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

C#
public static Set operator ^(
	Set a,
	Set b
)
Visual Basic
Public Shared Operator Xor ( _
	a As Set, _
	b As Set _
) As Set
Visual C++
public:
static Set^ operator ^(
	Set^ a, 
	Set^ b
)

Parameters

a
Type: Iesi.Collections..::..Set
A set of elements.
b
Type: Iesi.Collections..::..Set
A set of elements.

Return Value

A set containing the result of a ^ b. nullNothingnullptra null reference (Nothing in Visual Basic) if both sets are nullNothingnullptra null reference (Nothing in Visual Basic).

See Also