Enumerable.Except Method
.NET Framework (current version)
Produces the set difference of two sequences.
Assembly: System.Core (in System.Core.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | Except(Of TSource)(IEnumerable(Of TSource), IEnumerable(Of TSource)) | Produces the set difference of two sequences by using the default equality comparer to compare values. |
![]() ![]() | Except(Of TSource)(IEnumerable(Of TSource), IEnumerable(Of TSource), IEqualityComparer(Of TSource)) | Produces the set difference of two sequences by using the specified IEqualityComparer(Of T) to compare values. |
Show:

