The application is in break mode - Unable to determine cause

前端 未结 8 1680
無奈伤痛
無奈伤痛 2021-02-03 22:57

I\'m experiencing that the IDE breaks sometimes when my application terminates.

When this occurs, the call stack is empty, and the thread list shows some threads which d

8条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-03 23:43

    In one of my web applications I had the same issue, to find out what was wrong,after searching for similar issues, most suggested changing my debugging options. So in the debugging options, under general, I marked the second option "Break all processes when one process breaks" and nearly at the bottom, "Enable native Edit and Continue"; "Apply changes and Continue".

    With this, my app finally stopped where I had the issue (Illegal characters in a string which ajax did not like) and was able to evaluate the values and find out what was wrong, edit the code on the go till it worked. Here's a screenshot of my debugger options. Hope you catch your bug:)

    Debugger options

提交回复
热议问题