How does using Try-Catch
blocks in C#/Java
programs affect their execution speed?
I'm in the development process (using Visual C#) of writing a database app and have been putting a try-catch block in almost all methods that could possibly cause an error,
but was curious if doing so will reduce the execution speed of my program as well?
I know there are other factors that will affect speed as well, but does this slow the program down?
Since your app is database-driven, I'd say that most likely the time taken by the database calls will dwarf any performance penalties introduced by the try/catch blocks. If try/catch is the appropriate construct for what you are trying to do, then by all means do so.