xamarin / urho

Code to integrate with the Urho3D engine
Other
462 stars 122 forks source link

UnhandledException Not Firing #421

Open iBeta666 opened 1 year ago

iBeta666 commented 1 year ago

No matter the exception, UnhandledException is not entered. Tried on multiple apps; the exceptions are caught by VS.2019, but the Urho exception event is never fired. I am pretty sure it did work at some time, so I'm thinking perhaps a VS setting could interfere? Still, I wonder if there is a problem? static TestApp() { UnhandledException += (s, e) => { if (Debugger.IsAttached) Debugger.Break(); e.Handled = true; }; }