Possible Duplicate:
Performance Cost Of 'try' in C#
Hi lets say two similar codes (func A calling B, B calling C, C calling D and so on) are available with following slight difference: CODE 1: no try catch finally block is writen in code. CODE 2: each method has a try catch block within.
if no exception is thrown, is there any performance difference?
thanks.