SetDocumentation.SymmetricExceptWith Method

Sandcastle XML Comments

Sandcastle XML Comments GuideSetDocumentationSymmetricExceptWith Method
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.

Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public void SymmetricExceptWith(
	IEnumerable<int> other
)
Public Sub SymmetricExceptWith ( 
	other As IEnumerable(Of Integer)
)
public:
virtual void SymmetricExceptWith(
	IEnumerable<int>^ other
) sealed
abstract SymmetricExceptWith : 
        other : IEnumerable<int> -> unit 
override SymmetricExceptWith : 
        other : IEnumerable<int> -> unit 

Parameters

other
Type: System.Collections.GenericIEnumerableInt32
The collection to compare to the current set.

Implements

ISetTSymmetricExceptWith(IEnumerableT)
Exceptions
ExceptionCondition
ArgumentNullExceptionother is null.
See Also