MoreEnumerable.MaxBy<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>) Method
Note: This API is now obsolete.
Returns the maximal elements of the given sequence, based on
the given projection.
Namespace: MoreLinqAssembly: MoreLinq (in MoreLinq.dll) Version: 4.4.0+6d97c3b1d482f98300f4446df14742b0e3fafbec
[ObsoleteAttribute("Use Maxima instead.")]
public static IExtremaEnumerable<TSource> MaxBy<TSource, TKey>(
IEnumerable<TSource> source,
Func<TSource, TKey> selector
)
<ObsoleteAttribute("Use Maxima instead.")>
Public Shared Function MaxBy(Of TSource, TKey) (
source As IEnumerable(Of TSource),
selector As Func(Of TSource, TKey)
) As IExtremaEnumerable(Of TSource)
public:
[ObsoleteAttribute(L"Use Maxima instead.")]
generic<typename TSource, typename TKey>
static IExtremaEnumerable<TSource>^ MaxBy(
IEnumerable<TSource>^ source,
Func<TSource, TKey>^ selector
)
[<ObsoleteAttribute("Use Maxima instead.")>]
static member MaxBy :
source : IEnumerable<'TSource> *
selector : Func<'TSource, 'TKey> -> IExtremaEnumerable<'TSource>
- source IEnumerable<TSource>
- Source sequence
- selector Func<TSource, TKey>
- Selector to use to pick the results to compare
- TSource
- Type of the source sequence
- TKey
- Type of the projected element
IExtremaEnumerable<TSource>The sequence of maximal elements, according to the projection.
This overload uses the default comparer for the projected type.
This operator uses deferred execution. The results are evaluated
and cached on first use to returned sequence.