Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ParallelEnumerable::SequenceEqual Method

.NET Framework (current version)
 

Determines whether two parallel sequences are equal by comparing the elements by using an equality comparer for their type.

Namespace:   System.Linq
Assembly:  System.Core (in System.Core.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticSequenceEqual<TSource>(ParallelQuery<TSource>^, IEnumerable<TSource>^)

Obsolete. This SequenceEqual overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called.

System_CAPS_pubmethodSystem_CAPS_staticSequenceEqual<TSource>(ParallelQuery<TSource>^, IEnumerable<TSource>^, IEqualityComparer<TSource>^)

Obsolete. This SequenceEqual overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called.

System_CAPS_pubmethodSystem_CAPS_staticSequenceEqual<TSource>(ParallelQuery<TSource>^, ParallelQuery<TSource>^)

Determines whether two parallel sequences are equal by comparing the elements by using the default equality comparer for their type.

System_CAPS_pubmethodSystem_CAPS_staticSequenceEqual<TSource>(ParallelQuery<TSource>^, ParallelQuery<TSource>^, IEqualityComparer<TSource>^)

Determines whether two parallel sequences are equal by comparing their elements by using a specified IEqualityComparer{T}.

Return to top
Show:
© 2017 Microsoft