Hi all,
For some reason I can't seem to get ToObservable working in dotnetcore? I've tried all the following usings:
using System.Reactive;
using System.Reactive.Linq;
using System.Reactive.Concurrency;
using System.Reactive.Disposables;
using System.Reactive.Subjects;
The compiler is complaining that ToObservable doesn't exist.
var t = Enumerable.Range(1,10).ToObservable();
Any ideas?