Hi,
QUESTION: Re use of .NET Backgroundworker, is there not a way to let exceptions pass back normally to main thread?
BACKGROUND:
- Currently in my WinForms application I have generic exception handle that goes along the lines of, if (a) a custom app exception then present to user, but don't exit program, and (b) if other exception then present and then exit application
- The above is nice as I can just throw the appropriate exception anywhere in the application and the presentation/handling is handled generically