Table of Contents

Method SymmetricExceptWith

Namespace
Skyline.DataMiner.Core.DataMinerSystem.Common
Assembly
Skyline.DataMiner.Core.DataMinerSystem.Common.dll

SymmetricExceptWith(IEnumerable<IDmsView>)

Modifies the current set to contain only items that are present either in this object or in the specified collection, but not both.

public void SymmetricExceptWith(IEnumerable<IDmsView> other)

Parameters

other IEnumerable<IDmsView>

The collection to compare to the current object.

Remarks

If the other parameter is a collection with the same equality comparer as the current object, this method is an O(n) operation. Otherwise, this method is an O(n + m) operation, where n is the number of items in other and m is Count.

Exceptions

ArgumentNullException

other is null.