I know Exception Handling is a very important thing and we are doing it in all our projects. The main reason is to log errors that occur at the customers. This works fine and is not problem at all.
But while I am still coding and running the application with Visual Studio I don't want any exception handling at all. I want the debugger stop right at the line the application crashed and not in some error logger I wrote. And I don't want to forward exceptions with throw!
But I am still looking for an easy way to do that. I could write countless #if Debug or #if Release statements all around the try/catch but that is not what I want to do. Is there any other way to deal with this problem?