Why is it so slow to throw exceptions? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-19T01:41:41Zhttp://stackoverflow.com/feeds/question/988127http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/988127/why-is-it-so-slow-to-throw-exceptions3Why is it so slow to throw exceptions? [closed]Joan Venge2009-06-12T18:03:11Z2009-06-15T19:57:30Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/52312/what-is-the-real-overhead-of-try-catch-in-c">What is the real overhead of try/catch in C#?</a> </p>
</blockquote>
<p>Why is it so slow to throw exceptions?</p>
http://stackoverflow.com/questions/988127/why-is-it-so-slow-to-throw-exceptions/988141#9881412Answer by Josh E for Why is it so slow to throw exceptions?Josh E2009-06-12T18:05:23Z2009-06-12T18:05:23Z<p>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.</p>