I’m getting first chance exceptions in my output window in debug mode. How do I find where they’re coming from? Do I have to put a breakpoint in every catch?
A first chance exception of type ‘System.IO.IOException’ occurred in mscorlib.dll
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Go to Debug, Exceptions (Ctrl + D, E), and check the types you’re interested in.
This dialog tells the debugger to break whenever an exception is thrown, regardless of whether it’s caught.