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