Overriding the OnUnhandledException doesn't seem to work for exceptions raised from within spawned threads.
I verified this by raising an exception from the UI thread. That is caught as expected. Any workarounds that do not require me to change my application structure?
Comments: Right now I used ``` task.ContinueWith(..) ``` I'll try using ``` TaskScheduler.UnobservedTaskException ``` Thanks for the reply. Robin
I verified this by raising an exception from the UI thread. That is caught as expected. Any workarounds that do not require me to change my application structure?
Comments: Right now I used ``` task.ContinueWith(..) ``` I'll try using ``` TaskScheduler.UnobservedTaskException ``` Thanks for the reply. Robin