Enumerable.MinBy 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
MinBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>) |
根据指定的键选择器函数返回泛型序列中的最小值。 |
MinBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IComparer<TKey>) |
根据指定的键选择器函数和键比较器返回泛型序列中的最小值。 |
MinBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>)
- Source:
- Min.cs
- Source:
- Min.cs
- Source:
- Min.cs
根据指定的键选择器函数返回泛型序列中的最小值。
public:
generic <typename TSource, typename TKey>
[System::Runtime::CompilerServices::Extension]
static TSource MinBy(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TKey> ^ keySelector);
public static TSource? MinBy<TSource,TKey> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TKey> keySelector);
static member MinBy : seq<'Source> * Func<'Source, 'Key> -> 'Source
<Extension()>
Public Function MinBy(Of TSource, TKey) (source As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey)) As TSource
类型参数
- TSource
source
的元素类型。
- TKey
要比较元素的键的类型。
参数
- source
- IEnumerable<TSource>
要确定其最小值的值序列。
- keySelector
- Func<TSource,TKey>
用于提取每个元素的键的函数。
返回
序列中具有最小键的值。
例外
source
为 null
。
从 source
中提取的键不实现 IComparable 或 IComparable<T> 接口。
TSource
是基元类型,源序列为空。
注解
如果源序列为空,则根据源类型,可能会出现两种可能的结果。 如果 TSource
为可以为 null 的类型,则此方法返回 null
。 如果 TSource
是不可为空的结构(例如基元类型), InvalidOperationException 则会引发 。
如果源序列仅包含 的值, null
则此方法返回 null
。
适用于
MinBy<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IComparer<TKey>)
- Source:
- Min.cs
- Source:
- Min.cs
- Source:
- Min.cs
根据指定的键选择器函数和键比较器返回泛型序列中的最小值。
public:
generic <typename TSource, typename TKey>
[System::Runtime::CompilerServices::Extension]
static TSource MinBy(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, TKey> ^ keySelector, System::Collections::Generic::IComparer<TKey> ^ comparer);
public static TSource? MinBy<TSource,TKey> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,TKey> keySelector, System.Collections.Generic.IComparer<TKey>? comparer);
static member MinBy : seq<'Source> * Func<'Source, 'Key> * System.Collections.Generic.IComparer<'Key> -> 'Source
<Extension()>
Public Function MinBy(Of TSource, TKey) (source As IEnumerable(Of TSource), keySelector As Func(Of TSource, TKey), comparer As IComparer(Of TKey)) As TSource
类型参数
- TSource
source
的元素类型。
- TKey
要比较元素的键的类型。
参数
- source
- IEnumerable<TSource>
要确定其最小值的值序列。
- keySelector
- Func<TSource,TKey>
用于提取每个元素的键的函数。
- comparer
- IComparer<TKey>
IComparer<T>要比较键的 。
返回
序列中具有最小键的值。
例外
source
为 null
。
从 source
中提取的键不实现 IComparable 或 IComparable<T> 接口。
TSource
是基元类型,源序列为空。
注解
如果源序列为空,则根据源类型,可能会出现两种可能的结果。 如果 TSource
为可以为 null 的类型,则此方法返回 null
。 如果 TSource
是不可为空的结构(例如基元类型), InvalidOperationException 则会引发 。
如果源序列仅包含 的值, null
则此方法返回 null
。