Every now and then i read it in the output pane
Simply, Why and when this happens?
Every now and then i read it in the output pane Simply, Why and
Share
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.
This will happen if an exception is thrown but then caught. There are some bits of the framework which do this with a depressing frequency… but typically you can ignore it. If it’s happening really frequently and you think it may be affecting performance you could always try to work out what’s causing it and see if there’s anything you can do to stop it – but in my experience it’s usually something which happens in perfectly normal situations 🙁
To see where it’s happening, you go to the debugger options and make it break as soon as the exception is thrown – that way you should get a stack trace which will at least show whether it’s any of your code directly calling into framework code.
Of course if the DLL is one which is under your control, that’s a different matter… then you’ve got much more chance of working out what’s going on 🙂