Click or drag to resize

MinByExtension Class

MinBy extension.
Inheritance Hierarchy
System.Object
  MoreLinq.Extensions.MinByExtension

Namespace:  MoreLinq.Extensions
Assembly:  MoreLinq (in MoreLinq.dll) Version: 3.0.0
Syntax
public static class MinByExtension
Methods
  NameDescription
Public methodStatic memberMinBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>)
Returns the minimal elements of the given sequence, based on the given projection.
Public methodStatic memberMinBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)
Returns the minimal elements of the given sequence, based on the given projection and the specified comparer for projected values.
Top
See Also