Sandcastle XML Comments Guide
SetDocumentationUnionWith Method |
Modifies the current set so that it contains all elements that are present in the current set, in the specified collection, or in both.
Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public void UnionWith( IEnumerable<int> other )
Public Sub UnionWith ( other As IEnumerable(Of Integer) )
public: virtual void UnionWith( IEnumerable<int>^ other ) sealed
abstract UnionWith : other : IEnumerable<int> -> unit override UnionWith : other : IEnumerable<int> -> unit
Parameters
- other
- Type: System.Collections.GenericIEnumerableInt32
The collection to compare to the current set.
Implements
ISetTUnionWith(IEnumerableT)Exceptions
Exception | Condition |
---|---|
ArgumentNullException | other is null. |
See Also