Ho un progetto su WinForms con questo codice:WinRt. Gestore UnhandledException. StackTrace è nullo
AppDomain.CurrentDomain.UnhandledException += CurrentDomainUnhandledException;
private void CurrentDomainUnhandledException(object sender, UnhandledExceptionEventArgs e)
{ }
Il e.ExceptionObject
contiene pieno StackTrace.
In Win progetto Store:
this.UnhandledException += (s, e) =>{
{
MarkedUp.AnalyticClient.LogLastChanceException(e);
};
e.Exception.StackTrace è nullo.
Entrambe le eccezioni sono stati generati da questo codice:
int a=0;
....
try
{
int i = 1/a;
}
catch (Exception exp)
{
throw;
}
tutte le idee?