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?