Why is it so slow to throw exceptions? - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-19T01:41:41Z http://stackoverflow.com/feeds/question/988127 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/988127/why-is-it-so-slow-to-throw-exceptions 3 Why is it so slow to throw exceptions? [closed] Joan Venge 2009-06-12T18:03:11Z 2009-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#988141 2 Answer by Josh E for Why is it so slow to throw exceptions? Josh E 2009-06-12T18:05:23Z 2009-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>