If we remove all exception-handling code of try-catch with error-return value, will there be constant performance increase or % performance increase in the code execution ?
Are there good articles/references that would explain cost of first throw,try-catch and cost of subsequent throw, try-catch blocks ?
The purpose of this question is not about finding threshold at which one might go for error-return style of coding over exceptions. We all know it is messy. (faster but messy).
I am looking to quantify cost of try-catch and impact of it w.r.t. 0 to 1 try-catch block and 1 to n try catch block.