Click or drag to resize

EndsWithExtensionEndsWithT Method (IEnumerableT, IEnumerableT, IEqualityComparerT)

Determines whether the end of the first sequence is equivalent to the second sequence, using the specified element equality comparer.

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntax
public static bool EndsWith<T>(
	this IEnumerable<T> first,
	IEnumerable<T> second,
	IEqualityComparer<T> comparer
)

Parameters

first
Type: System.Collections.GenericIEnumerableT
The sequence to check.
second
Type: System.Collections.GenericIEnumerableT
The sequence to compare to.
comparer
Type: System.Collections.GenericIEqualityComparerT
Equality comparer to use.

Type Parameters

T
Type of elements.

Return Value

Type: Boolean
true if first ends with elements equivalent to second.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
See Also