Observable.Average 方法 (IObservable < Int64 >)
計算 Int64 值的可觀察序列平均值。
Namespace:System.Reactive.Linq
裝配: System.Reactive.dll) 中的 System.Reactive (
語法
'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>
參數
- source
類型:System.IObservable<Int64>
要計算平均值的 Int64 值序列。
傳回值
類型:System.IObservable<Double>
Int64值的可觀察序列平均值。
使用注意事項
在 Visual Basic 和 C# 中,您可以在IObservable<Int64> 類型的任何物件上呼叫這個方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。