Performs a "union" of the two sets, where all the elements
            in both sets are present.  That is, the element is included if it is in either a or b.
            Neither this set nor the input set are modified during the operation.  The return value
            is a Clone() of this set with the extra elements added in.
            
Namespace: Iesi.Collections.GenericAssembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)
 Syntax
Syntax
| C# | 
|---|
| public virtual ISet<T> Union(
	ISet<T> a
) | 
| Visual Basic | 
|---|
| Public Overridable Function Union ( _
	a As ISet(Of T) _
) As ISet(Of T) | 
| Visual C++ | 
|---|
| public:
virtual ISet<T>^ Union(
	ISet<T>^ a
) | 
Return Value
A new 
Set containing the union of this 
Set with the specified collection.
            Neither of the input objects is modified by the union.
Implements
ISet<(Of <(<'T>)>)>..::..Union(ISet<(Of <<'(T>)>>)) See Also
See Also