vote up 3 vote down star
1

Possible Duplicate:
What is the real overhead of try/catch in C#?

Why is it so slow to throw exceptions?

flag

56% accept rate
Duplicate: stackoverflow.com/questions/52312/… – Noldorin Jun 12 at 18:06
I think this question still deserves to be open. This focuses on throwing exceptions whereas the try/catch question talks about not necessarily exceptions. You don't necessarily get or catch an exception with try/catch. – Joan Venge Jun 12 at 18:26
@Joan Venge: Except that the question about why Exceptions are "slow" is covered in the duplicate question, and is well-answered. – Eddie Jun 12 at 18:39

closed as exact duplicate by Noldorin, Brian, Shog9, Erik, Matthew Flaschen Jun 12 at 18:08

1 Answer

vote up 2 vote down

I think one reason is that the entire call stack needs to be walked in order to generate the exception - this is expensive when the call stack crosses one or more app domain boundaries. Someone else may have a more compelete answer for you, however.

link|flag

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