Click or drag to resize

IEnumerableExtensionsSequenceEqual Method

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

Namespace:  Cauldron.Collections
Assembly:  Cauldron.Collections (in Cauldron.Collections.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public bool SequenceEqual(
	IEnumerable second
)

Parameters

second
Type: System.CollectionsIEnumerable
An IEnumerable to compare to the first sequence.

Return Value

Type: Boolean
true if the two source sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type; otherwise, false.
See Also