Target Framework: Net Framework 4.6.1 WPF App, net standard 2.0 Assembly
Operating System: Windows 10 1903 build 18362.329
Steps to Reproduce:
In my particular case this method cause the exception:
IObservable<(Notification notification, NotificationOption option)> Subscribe(Func<Notification, bool> filter)
After switching to a regular tuple the exception dissapears:
IObservable<Tuple<Notification, NotificationOption>> Subscribe(Func<Notification, bool> filter)
Without obfuscation the application works without problems. The method is located in a netstandard 2.0 assembly referenced by a Net 4.6.1 WPF App.
I just noticed that the crash also occurs in a class that previously did not crash. The difference is that it was previously in the main application (Net 461), but now it is in a net standard 2.0 assembly.
Steps to Reproduce:
In my particular case this method cause the exception: IObservable<(Notification notification, NotificationOption option)> Subscribe(Func<Notification, bool> filter)
After switching to a regular tuple the exception dissapears: IObservable<Tuple<Notification, NotificationOption>> Subscribe(Func<Notification, bool> filter)
Without obfuscation the application works without problems. The method is located in a netstandard 2.0 assembly referenced by a Net 4.6.1 WPF App.
stacktrace.txt Converter.Client.zip