Observable.Min Method (IObservable<Nullable<Single>>)
Returns the minimum value in an observable sequence of nullable Float values.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Min ( _
source As IObservable(Of Nullable(Of Single)) _
) As IObservable(Of Nullable(Of Single))
'Usage
Dim source As IObservable(Of Nullable(Of Single))
Dim returnValue As IObservable(Of Nullable(Of Single))
returnValue = source.Min()
public static IObservable<Nullable<float>> Min(
this IObservable<Nullable<float>> source
)
[ExtensionAttribute]
public:
static IObservable<Nullable<float>>^ Min(
IObservable<Nullable<float>>^ source
)
static member Min :
source:IObservable<Nullable<float32>> -> IObservable<Nullable<float32>>
public static function Min(
source : IObservable<Nullable<float>>
) : IObservable<Nullable<float>>
Parameters
- source
Type: System.IObservable<Nullable<Single>>
A sequence of nullable Float values to determine the minimum value of.
Return Value
Type: System.IObservable<Nullable<Single>>
The minimum value in an observable sequence of nullable Float values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<Nullable<Single>>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .