Observable.Range Method (Int32, Int32)
Generates an observable sequence of integral numbers within a specified range.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared Function Range ( _
start As Integer, _
count As Integer _
) As IObservable(Of Integer)
'Usage
Dim start As Integer
Dim count As Integer
Dim returnValue As IObservable(Of Integer)
returnValue = Observable.Range(start, count)
public static IObservable<int> Range(
int start,
int count
)
public:
static IObservable<int>^ Range(
int start,
int count
)
static member Range :
start:int *
count:int -> IObservable<int>
public static function Range(
start : int,
count : int
) : IObservable<int>
Parameters
- start
Type: System.Int32
The value of the first integer in the sequence.
- count
Type: System.Int32
The number of sequential integers to generate.
Return Value
Type: System.IObservable<Int32>
An observable sequence that contains a range of sequential integral numbers.