Observable.Min 方法 (IObservable < Int64 >)
傳回 Int64 值可觀察序列中的最小值。
Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (
語法
'Declaration
<ExtensionAttribute> _
Public Shared Function Min ( _
source As IObservable(Of Long) _
) As IObservable(Of Long)
'Usage
Dim source As IObservable(Of Long)
Dim returnValue As IObservable(Of Long)
returnValue = source.Min()
public static IObservable<long> Min(
this IObservable<long> source
)
[ExtensionAttribute]
public:
static IObservable<long long>^ Min(
IObservable<long long>^ source
)
static member Min :
source:IObservable<int64> -> IObservable<int64>
public static function Min(
source : IObservable<long>
) : IObservable<long>
參數
- source
類型:System.IObservable<Int64>
要判斷最小值的 Int64 值序列。
傳回值
類型:System.IObservable<Int64>
Int64值可觀察序列中的最小值。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IObservable<Int64> 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。