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