Describe the bug
I am currently getting an API collision between RxUI's offering of Cast and System.Reactive.Linq.Observable's offering.
Steps To Reproduce
- New project
- Add RxUI nuget
- Import
using ReactiveUI;
using System.Reactive.Linq;
IObservable<string> test = null;
test.Cast<string?>();