Observable.Min Method (IObservable<Nullable<Int32>>)
Returns the minimum value in an observable sequence of nullable Int32 values.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<Nullable<int>> Min( this IObservable<Nullable<int>> source )
Parameters
- source
- Type: System.IObservable<Nullable<Int32>>
A sequence of nullable Int32 values to determine the minimum value of.
Return Value
Type: System.IObservable<Nullable<Int32>>The minimum value in an observable sequence of nullable Int32 values.