if i am running a .net application and that application crashes frequently. i want to offer a crash recovery process such that after the crash, a message will be displayed to the user offering to restart the application. how is it possible to write the code that does this inside the application and still run after it had crashed!
sounds like a weird loop of code but i’d like to know your experience on this.
if i am running a .net application and that application crashes frequently. i want
Share
You can subscribe to
AppDomain.CurrentDomain.UnhandledExceptionevent and do the stuff from the event handler.