Not able to set breakpoint in visual studio

后端 未结 8 1021
后悔当初
后悔当初 2021-01-11 15:36

I am using Visual Studio 2013 and I am facing a weird issue from last few days. Whenever I try to set a break point, I get an error

\"The Following breakpoint can         


        
8条回答
  •  爱一瞬间的悲伤
    2021-01-11 16:17

    I had the same problem with Python code. Everything was ok, but

    "The breakpoint failed to bind"

    If the line number (where is the breakpoint set) is greater then 512, than you can't debug. I simply reorganized my code, to be earlier that part with breakpoint and magically debugging is working again...

    At this link you can find a full answer (at final rows):http://pytools.codeplex.com/workitem/3007. So this is fixed in last version of Python Tools, but that version (2.2) works with VS2015 only.

提交回复
热议问题