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