-
Notifications
You must be signed in to change notification settings - Fork 26
Except
Eugene Sadovoi edited this page Jul 7, 2016
·
1 revision
Produces the set difference of two sequences by using the specified key selector to compare values.
Except(second[, keySelector])
An Iterable whose elements that also occur in the first sequence will cause those elements to be removed from the returned sequence.
A function to extract the key from each element of the sequence. This key is being used to determine equality of the elements: TKey keySelector(TSource)
A sequence that contains the set difference of the elements of two sequences.
Gets all the elements from the sequence except for the elements from the second sequence.