How to log all thrown exceptions?

I guess the feature you are searching for is called FirstChanceException and can be accessed via the AppDomain.FirstChanceException Event Essentially this event provides a hook to get information about any (managed) exception getting thrown in the AppDomain. You can not handle the Exception this way! It is only a sort of notification Update: regarding your … Read more