EndsWithExtensionEndsWithT(IEnumerableT, IEnumerableT, IEqualityComparerT) Method
Determines whether the end of the first sequence is equivalent to
the second sequence, using the specified element equality comparer.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 3.4.0+b99a6a8cc504caf2d48372fe54a2f8116c59cd0c
public static bool EndsWith<T>(
this IEnumerable<T> first,
IEnumerable<T> second,
IEqualityComparer<T>? comparer
)
<ExtensionAttribute>
Public Shared Function EndsWith(Of T) (
first As IEnumerable(Of T),
second As IEnumerable(Of T),
comparer As IEqualityComparer(Of T)
) As Boolean
public:
[ExtensionAttribute]
generic<typename T>
static bool EndsWith(
IEnumerable<T>^ first,
IEnumerable<T>^ second,
IEqualityComparer<T>^ comparer
)
[<ExtensionAttribute>]
static member EndsWith :
first : IEnumerable<'T> *
second : IEnumerable<'T> *
comparer : IEqualityComparer<'T> -> bool
- first IEnumerableT
- The sequence to check.
- second IEnumerableT
- The sequence to compare to.
- comparer IEqualityComparerT
- Equality comparer to use.
- T
- Type of elements.
Booleantrue if
first ends with elements
equivalent to
second.
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).