Tagged Questions
6
votes
1answer
161 views
How is code executing after an exception?
I must be missing something... How can an exception be thrown, yet the code following the exception still gets hit in the debugger?
private UpdaterManifest GetUpdaterManifest()
{
string ...
2
votes
1answer
89 views
I can't catch exceptions in an Invoked delegate
I have a delegate which is attached to an event in the Excel interop component. The goal is to update a winforms control with updated info from Excel. Since I'm changing Control properties I need to ...
2
votes
1answer
293 views
Is there a way to prevent Visual Studio from breaking on exceptions in a specific method?
I know I can control the way Visual Studio handles exceptions according to their type and to the fact that they're eventually caught using the "Exception" dialog.
However, I've got a library that's ...