Method ExceptWith
- Namespace
- Skyline.DataMiner.Core.DataMinerSystem.Common
- Assembly
- Skyline.DataMiner.Core.DataMinerSystem.Common.dll
ExceptWith(IEnumerable<IDmsView>)
Removes all items in the specified collection from the current set.
public void ExceptWith(IEnumerable<IDmsView> other)
Parameters
otherIEnumerable<IDmsView>The collection of items to remove from the set.
Remarks
The ExceptWith method is the equivalent of mathematical set subtraction.
This method is an O(n) operation, where n is the number of elements in the other parameter.
Exceptions
- ArgumentNullException
otheris null.