You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <returns>Returns <see langword="true"/> if none of the elements of the current <see cref="IEnumerable{T}"/> satisfy the specified predicate condition; otherwise, <see langword="false"/>.</returns>
/// <summary>Determines whether two sequences are <see langword="null"/>, or equal by comparing their elements by using a specified <see cref="T:IEqualityComparer{T}" />.</summary>
179
+
/// <param name="first">An <see cref="T:IEnumerable{T}" /> to compare to <paramref name="second" />.</param>
180
+
/// <param name="second">An <see cref="T:IEnumerable{T}" /> to compare to the first sequence.</param>
181
+
/// <param name="comparer">An <see cref="T:IEqualityComparer{T}" /> to use to compare elements.</param>
182
+
/// <typeparam name="T">The underlying type of the <see cref="IEnumerable{T}"/>.</typeparam>
183
+
/// <returns> Returns <see langword="true" /> if the two source sequences are <see langword="null"/>, or of equal length and their corresponding elements compare equal according to <paramref name="comparer" />; otherwise, <see langword="false" />.</returns>
0 commit comments