vote up 5 vote down star
1

What exactly is a first chance exception? How and where does it originate in a .Net program? And why is it called by that peculiar name (what 'chance' are we talking about)?

flag

70% accept rate

3 Answers

vote up 3 vote down check

It's a debugging concept. Basically exceptions are thrown to the debugger first and then to the actual program where if it isn't handled it gets thrown to the debugger a second time, giving you a chance to do something with it in your IDE before and after the application itself. This appears to be a MSVS invention.

(edit: slightly wrong about the meaning of second chance it seems, edited accordingly)

link|flag
vote up 2 vote down

See this explanation.

link|flag
vote up 2 vote down

First chance exception notifications are raised when an exception is thrown. Second chance notifications are when it is not caught. (Chance - as in opportunity to break into the code in the debugger).

First and second chance exception handling

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.