返回 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> 类型的任何对象上调用此方法作为实例方法。 当使用实例方法语法调用此方法时,请省略第一个参数。 有关详细信息,请参阅或。