MinByExtensionMinByTSource, TKey(IEnumerableTSource, FuncTSource, TKey, IComparerTKey) Method

Note: This API is now obsolete.
Returns the minimal elements of the given sequence, based on the given projection and the specified comparer for projected values.

Definition

Namespace: MoreLinq.Extensions
Assembly: MoreLinq (in MoreLinq.dll) Version: 4.1.0+0e154ef592f33ce0f6f3d534a9eedee273f0ce72
C#
[ObsoleteAttribute("Use Minima instead.")]
public static IExtremaEnumerable<TSource> MinBy<TSource, TKey>(
	this IEnumerable<TSource> source,
	Func<TSource, TKey> selector,
	IComparer<TKey>? comparer
)

Parameters

source  IEnumerableTSource
Source sequence
selector  FuncTSource, TKey
Selector to use to pick the results to compare
comparer  IComparerTKey
Comparer to use to compare projected values

Type Parameters

TSource
Type of the source sequence
TKey
Type of the projected element

Return Value

IExtremaEnumerableTSource
The sequence of minimal elements, according to the projection.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTSource. 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

This operator uses deferred execution. The results are evaluated and cached on first use to returned sequence.

Exceptions

ArgumentNullExceptionsource, selector or comparer is null

See Also