Performs a "minus" of set b from set a.  This returns a set of all
            the elements in set a, removing the elements that are also in set b.
            The original sets are not modified during this operation.  The result set is a Clone()
            of set a containing the elements from the operation. 
            
Namespace: Iesi.CollectionsAssembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)
 Syntax
Syntax
| C# | 
|---|
| public static Set operator -(
	Set a,
	Set b
) | 
| Visual Basic | 
|---|
| Public Shared Operator - ( _
	a As Set, _
	b As Set _
) As Set | 
| Visual C++ | 
|---|
| public:
static Set^ operator -(
	Set^ a, 
	Set^ b
) | 
Return Value
A set containing 
A - B elements.  
nullNothingnullptra null reference (Nothing in Visual Basic) if 
a is 
nullNothingnullptra null reference (Nothing in Visual Basic).
 See Also
See Also