Observable.MinBy < TSource, TKey > 方法 (IObservable < TSource, Func < TSource > , TKey >)
傳回具有最小索引鍵值的可觀察序列中的專案。
Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function MinBy(Of TSource, TKey) ( _
source As IObservable(Of TSource), _
keySelector As Func(Of TSource, TKey) _
) As IObservable(Of IList(Of TSource))
'Usage
Dim source As IObservable(Of TSource)
Dim keySelector As Func(Of TSource, TKey)
Dim returnValue As IObservable(Of IList(Of TSource))
returnValue = source.MinBy(keySelector)
public static IObservable<IList<TSource>> MinBy<TSource, TKey>(
this IObservable<TSource> source,
Func<TSource, TKey> keySelector
)
[ExtensionAttribute]
public:
generic<typename TSource, typename TKey>
static IObservable<IList<TSource>^>^ MinBy(
IObservable<TSource>^ source,
Func<TSource, TKey>^ keySelector
)
static member MinBy :
source:IObservable<'TSource> *
keySelector:Func<'TSource, 'TKey> -> IObservable<IList<'TSource>>
JScript does not support generic types and methods.
類型參數
- TSource
來源的類型。
- TKey
索引鍵類型。
參數
- source
類型:System.IObservable< TSource>
要為其取得最小元素的可觀察序列。
- keySelector
類型:System.Func< TSource、TKey>
索引鍵選取器函式。
傳回值
類型:System.IObservable<IList< TSource>>
具有最小索引鍵值之可觀察序列中的專案。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IObservable< TSource > 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。