vote up 2 vote down star

It seems like its not incredibly expensive as long as the stack isn't too deep but I've read conflicting reports. Just wondering if there is a definitive report out there that hasn't been rebutted.

flag

79% accept rate

5 Answers

vote up 7 vote down check

Jon Skeet wrote Exceptions and Performance in .NET in Jan 2006

Which was updated Exceptions and Performance Redux (thanks @Gulzar)

To which Rico Mariani chimed in The True Cost of .NET Exceptions -- Solution


Also reference: Krzysztof Cwalina - Design Guidelines Update: Exception Throwing

link|flag
1  
updated one: yoda.arachsys.com/csharp/exceptions2.html – Gulzar May 21 at 3:10
Great - thanks. – Chance May 21 at 3:43
vote up 2 vote down

I guess I'm in the camp that if performance of exceptions impacts your application then you're throwing WAY too many of them. Exceptions should be for exceptional conditions, not as routine error handling.

That said, my recollection of how exceptions are handled is essentially walking up the stack finding a catch statement that matches the type of the exception thrown. So performance will be impacted most by how deep you are from the catch and how many catch statements you have.

link|flag
@Colin while I agree with your statement, you're meandering off-topic and your tone is a little preachy. – Robert Paulson May 21 at 3:10
And then you have Java camp, where exceptions are encouraged. – Unknown May 21 at 3:20
1  
If stating my opinion is "preaching", then so be it. My point still stands that if exceptions are impacting your performance then you need to throw fewer exceptions. It's not exactly what Chance's question is about but it most certainly is on topic. How am I supposed to know of Chance had considered my point already or not? – Colin Burnett May 21 at 3:23
Doesn't sound preachy to me. Actually sounds just like what Jon Skeet said, "If you ever get to the point where exceptions are significantly hurting your performance, you have problems in terms of your use of exceptions beyond just the performance." – OrbMan May 21 at 3:24
vote up 1 vote down

Barebones exception objects in C# are fairly lightweight; it's usually the ability to encapsulate an InnerException that makes it heavy when the object tree becomes too deep.

As for a definitive, report, I'm not aware of any, although a cursory dotTrace profile (or any other profiler) for memory consumption and speed will be fairly easy to do.

link|flag
vote up 2 vote down

The True Cost of .NET Exceptions -- Solution

link|flag
vote up 1 vote down

The performance hit with exceptions seems to be at the point of generating the exception object (albeit too small to cause any concerns 90% of the time). The recommendation therefore is to profile your code - if exceptions are causing a performance hit, you write a new high-perf method that does not use exceptions. (An example that comes to mind would be (TryParse introduced to overcome perf issues with Parse which uses exceptions)

THat said, exceptions in most cases do not cause significant performance hits in most situations - so the MS Design Guideline is to report failures by throwing exceptions

link|flag

Your Answer

Get an OpenID
or

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