共用方式為


Observable.Average 方法 (IObservable Nullable << Int32 >>)

計算可為 Null Int32 值的可觀察序列平均值。

Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (

語法

'Declaration
<ExtensionAttribute> _
Public Shared Function Average ( _
    source As IObservable(Of Nullable(Of Integer)) _
) As IObservable(Of Nullable(Of Double))
'Usage
Dim source As IObservable(Of Nullable(Of Integer))
Dim returnValue As IObservable(Of Nullable(Of Double))

returnValue = source.Average()
public static IObservable<Nullable<double>> Average(
    this IObservable<Nullable<int>> source
)
[ExtensionAttribute]
public:
static IObservable<Nullable<double>>^ Average(
    IObservable<Nullable<int>>^ source
)
static member Average : 
        source:IObservable<Nullable<int>> -> IObservable<Nullable<float>> 
public static function Average(
    source : IObservable<Nullable<int>>
) : IObservable<Nullable<double>>

參數

傳回值

類型:System.IObservable可為 Null 的<雙精度浮點 < 數>>
可為 Null 之 Int32 值的可觀察序列平均值。

使用注意事項

在 Visual Basic 和 C# 中,您可以在IObservable<Nullable<Int32>> 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱

另請參閱

參考

Observable 類別

平均多載

System.Reactive.Linq 命名空間