You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please implement "System.Reactive.Windows.Forms" for .NET 5.0.
Although it was not specifically targeted at .NET Core 3.1, I was able to get it working with warnings. However, the same code (when targeted at .NET 5.0) does not compile at all.
Example:
Observable.FromEventPattern<MouseEventHandler, MouseEventArgs>(e => control.MouseMove += e, e => control.MouseMove -= e).ObserveOn(control);
Error:
CS1503 Argument 2: cannot convert from 'System.Windows.Forms.Control' to 'System.Reactive.Concurrency.IScheduler'
The text was updated successfully, but these errors were encountered:
Feature request
Please implement "System.Reactive.Windows.Forms" for .NET 5.0.
Although it was not specifically targeted at .NET Core 3.1, I was able to get it working with warnings. However, the same code (when targeted at .NET 5.0) does not compile at all.
Example:
Observable.FromEventPattern<MouseEventHandler, MouseEventArgs>(e => control.MouseMove += e, e => control.MouseMove -= e).ObserveOn(control);
Error:
CS1503 Argument 2: cannot convert from 'System.Windows.Forms.Control' to 'System.Reactive.Concurrency.IScheduler'
The text was updated successfully, but these errors were encountered: