Posts Tagged exceptions

Try/Catch Slowdown: Part 2

Today’s article is in response to a comment left about my article on try/catch slowdowns. The second time around I will provide an example that is hopefully more “real world” than the last article provided.

Read the rest of this entry »

Tags: , , , ,

2 Comments

Try/Catch Slowdown

Try/catch blocks are certainly a nice feature to have. They allow you to catch errors that are beyond your control and handle them in a nice manner. They also allow you to throw your own errors and handle them in the same way. This would all be great if it weren’t for the fact that they are tremendously slow. Read on for some surprising test results.

Read the rest of this entry »

Tags: , , , ,

4 Comments