This topic has not yet been rated - Rate this topic

ISet<T>.ExceptWith Method

Removes all elements in the specified collection from the current set.

Namespace:  System.Collections.Generic
Assembly:  System (in System.dll)
void ExceptWith(
	IEnumerable<T> other
)

Parameters

other
Type: System.Collections.Generic.IEnumerable<T>
The collection of items to remove from the set.
ExceptionCondition
ArgumentNullException

other is null.

This method is an O(n) operation, where n is the number of elements in the other parameter.

Silverlight

Supported in: 5, 4

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.